diff options
| author | hashlash <muh.ashlah@gmail.com> | 2020-03-21 03:20:48 +0700 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-01 12:51:11 +0200 |
| commit | 4a6f2b63d7ad5907b3d64f8e4d318e7d59b4dd5f (patch) | |
| tree | 44be9d4aeaa1998dcceddce6d04bb68ea25927b9 /docs/ref | |
| parent | e9b014fbc56b9baf91019a803ab2a45788c5c44a (diff) | |
Fixed #31380 -- Added deployment system check for DJANGO_ALLOW_ASYNC_UNSAFE environment variable.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 16 |
1 files changed, 16 insertions, 0 deletions
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 @@ -93,12 +94,27 @@ 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 using the :option:`check --database` option. 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 <async-safety>`. + Backwards compatibility ----------------------- |
