Changes between Initial Version and Version 1 of Ticket #31984
- Timestamp:
- Sep 5, 2020, 5:50:17 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31984 – Description
initial v1 1 1 It seems like running Django with an asgi server like uvicorn in 3.1 causes `TypeError: object HttpResponse can't be used in 'await' expression` to be raised. Runserver works fine, as does gunicorn + wsgi. This is happening across two different projects for me. 2 2 3 ``` 3 4 5 {{{ 4 6 [2020-09-05 15:34:28 -0700] [93779] [INFO] Booting worker with pid: 93779 5 7 [2020-09-05 15:34:28 -0700] [93780] [INFO] Booting worker with pid: 93780 … … 58 60 result = await self.awaitable(*args, **kwargs) 59 61 TypeError: object HttpResponse can't be used in 'await' expression 60 ``` 62 63 }}}