Changes between Initial Version and Version 2 of Ticket #34428
- Timestamp:
- Mar 21, 2023, 11:03:38 AM (20 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34428
- Property Has patch set
-
Ticket #34428 – Description
initial v2 1 #33735 added async support to StreamingHttpResponsefor Django 4.2.1 #33735 added async support to `StreamingHttpResponse` for Django 4.2. 2 2 3 With Django 4.2rc1 and Daphne, ` `` raises a warning about the incorrect iterator type being used:3 With Django 4.2rc1 and Daphne, `StreamingHttpResponse` raises a warning about the incorrect iterator type being used: 4 4 5 5 > http/response.py:534: Warning: StreamingHttpResponse must consume synchronous iterators in order to serve them asynchronously. Use an asynchronous iterator instead.