diff options
| author | Kevin Michel <kevin.michel@sereema.com> | 2020-08-24 22:25:33 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-08-28 12:35:53 +0200 |
| commit | 3a42c0447b6a3187bd2aaae0bba566d835c47d22 (patch) | |
| tree | 1352fdfce2e4761177be5a34523d29ff394733fb /docs | |
| parent | 14a19700d8b90b5949381153c854613a45923ef4 (diff) | |
[3.1.x] Fixed #31928 -- Fixed detecting an async get_response in various middlewares.
SecurityMiddleware and the three cache middlewares were not calling
super().__init__() during their initialization or calling the required
MiddlewareMixin._async_check() method.
This made the middlewares not properly present as coroutine and
confused the middleware chain when used in a fully async context.
Thanks Kordian Kowalski for the report.
Backport of 825ce75faec63ce81601e31152c757a9c28fed13 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/3.1.1.txt | 3 | ||||
| -rw-r--r-- | docs/spelling_wordlist | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.1.txt b/docs/releases/3.1.1.txt index 84f9020c53..68c02392bd 100644 --- a/docs/releases/3.1.1.txt +++ b/docs/releases/3.1.1.txt @@ -48,3 +48,6 @@ Bugfixes ``CommonPasswordValidator`` and ``settings.py`` generated by the :djadmin:`startproject` command, when user didn't have permissions to all intermediate directories in a Django installation path (:ticket:`31912`). + +* Fixed detecting an async ``get_response`` callable in various builtin + middlewares (:ticket:`31928`). diff --git a/docs/spelling_wordlist b/docs/spelling_wordlist index c5ec8e4e31..0e18a1c83d 100644 --- a/docs/spelling_wordlist +++ b/docs/spelling_wordlist @@ -371,6 +371,7 @@ metre MiB micrometre middleware +middlewares migrationname millimetre Minification |
