summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2023-04-06 13:01:26 +0200
committerGitHub <noreply@github.com>2023-04-06 13:01:26 +0200
commitbdf59bff657975e577b86b194b39ec2f77983d2b (patch)
treeb55bf67a6e7f6e76b0cbca4b8758828de7a54cac /docs
parent38e63c9e61152682f3ff982c85a73793ab6d3267 (diff)
Refs #34028 -- Doc'd that get_script_prefix() cannot be used outside of the request-response cycle.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/urlresolvers.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/urlresolvers.txt b/docs/ref/urlresolvers.txt
index 89564279a1..eb0b991f1b 100644
--- a/docs/ref/urlresolvers.txt
+++ b/docs/ref/urlresolvers.txt
@@ -236,3 +236,8 @@ its web server (normally, :func:`~django.urls.reverse` takes care of this for
you). In that case, you can call ``get_script_prefix()``, which will return
the script prefix portion of the URL for your Django project. If your Django
project is at the root of its web server, this is always ``"/"``.
+
+.. warning::
+
+ This function **cannot** be used outside of the request-response cycle
+ since it relies on values initialized during that cycle.