Changes between Initial Version and Version 1 of Ticket #36293, comment 8


Ignore:
Timestamp:
Apr 8, 2025, 12:44:23 AM (6 months ago)
Author:
huoyinghui

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36293, comment 8

    initial v1  
    55I 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.
    66
    7 Perhaps documentation can be added to explain how Django handles SSE responses. To avoid blocking, users need to configure response["Content-Encoding"] == "identity".
     7Perhaps 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}}}
Back to Top