From 4a6f2b63d7ad5907b3d64f8e4d318e7d59b4dd5f Mon Sep 17 00:00:00 2001 From: hashlash Date: Sat, 21 Mar 2020 03:20:48 +0700 Subject: Fixed #31380 -- Added deployment system check for DJANGO_ALLOW_ASYNC_UNSAFE environment variable. --- docs/ref/checks.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'docs/ref') diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index 2ebaf5201f..ec3735598a 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -74,6 +74,7 @@ Builtin tags Django's system checks are organized using the following tags: * ``admin``: Checks of any admin site declarations. +* ``async_support``: Checks asynchronous-related configuration. * ``caches``: Checks cache related configuration. * ``compatibility``: Flags potential problems with version upgrades. * ``database``: Checks database-related configuration issues. Database checks @@ -91,6 +92,10 @@ Django's system checks are organized using the following tags: Some checks may be registered with multiple tags. +.. versionchanged:: 3.1 + + The ``async_support`` tag was added. + .. versionchanged:: 3.1 The ``database`` checks are now run only for database aliases specified @@ -99,6 +104,17 @@ Some checks may be registered with multiple tags. Core system checks ================== +Asynchronous support +-------------------- + +.. versionadded:: 3.1 + +The following checks verify your setup for :doc:`/topics/async`: + +* **async.E001**: You should not set the ``DJANGO_ALLOW_ASYNC_UNSAFE`` + environment variable in deployment. This disables :ref:`async safety + protection `. + Backwards compatibility ----------------------- -- cgit v1.3