Fixed #31056 -- Allowed disabling async-unsafe check with an environment variable.

This commit is contained in:
Andrew Godwin 2019-12-02 13:02:21 -07:00 committed by Mariusz Felisiak
parent 635a3f8e6e
commit c90ab30fa1
5 changed files with 47 additions and 10 deletions

View file

@ -9,4 +9,7 @@ Django 3.0.1 fixes several bugs in 3.0.
Bugfixes
========
* ...
* Fixed a regression in Django 3.0 by restoring the ability to use Django
inside Jupyter and other environments that force an async context, by adding
and option to disable :ref:`async-safety` mechanism with
``DJANGO_ALLOW_ASYNC_UNSAFE`` environment variable (:ticket:`31056`).