Changes between Initial Version and Version 1 of Ticket #36293, comment 8
- Timestamp:
- Apr 8, 2025, 12:44:23 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36293, comment 8
initial v1 5 5 I think the significance of this issue lies in the fact that when users use Django to develop SSE requests, they may experience sudden blocking. However, it’s not directly caused by their own actions, making it hard to understand and debug. 6 6 7 Perhaps documentation can be added to explain how Django handles SSE responses. To avoid blocking, users need to configure response["Content-Encoding"] == "identity". 7 Perhaps documentation can be added to explain how Django handles SSE responses. To avoid blocking, users need to configure 8 {{{ 9 response["Content-Encoding"] == "identity". 10 }}}