Changes between Initial Version and Version 2 of Ticket #34428


Ignore:
Timestamp:
Mar 21, 2023, 11:03:38 AM (14 months ago)
Author:
Carlton Gibson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34428

    • Property Has patch set
  • Ticket #34428 – Description

    initial v2  
    1 #33735 added async support to StreamingHttpResponse for Django 4.2.
     1#33735 added async support to `StreamingHttpResponse` for Django 4.2.
    22
    3 With Django 4.2rc1 and Daphne, ``` raises a warning about the incorrect iterator type being used:
     3With Django 4.2rc1 and Daphne, `StreamingHttpResponse` raises a warning about the incorrect iterator type being used:
    44
    55> http/response.py:534: Warning: StreamingHttpResponse must consume synchronous iterators in order to serve them asynchronously. Use an asynchronous iterator instead.
Back to Top