Changes between Initial Version and Version 1 of Ticket #31984


Ignore:
Timestamp:
Sep 5, 2020, 5:50:17 PM (4 years ago)
Author:
Aaron Ng
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31984 – Description

    initial v1  
    11It 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.
    22
    3 ```
     3
     4
     5{{{
    46[2020-09-05 15:34:28 -0700] [93779] [INFO] Booting worker with pid: 93779
    57[2020-09-05 15:34:28 -0700] [93780] [INFO] Booting worker with pid: 93780
     
    5860    result = await self.awaitable(*args, **kwargs)
    5961TypeError: object HttpResponse can't be used in 'await' expression
    60 ```
     62
     63}}}
Back to Top