Changes between Initial Version and Version 1 of Ticket #17187, comment 6
- Timestamp:
- Nov 11, 2011, 4:35:26 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17187, comment 6
initial v1 1 A similar issue happens when running against uWSGI. Django attempts to do a read() even if the content-length us explicitly set to zero. The result is that the read() call blocks.1 A similar issue happens when running against uWSGI. Django attempts to do a read() even if the content-length is explicitly set to zero. The result is that the read() call blocks. 2 2 3 Itshould properly distinguish between unknown content-length (when trying to read might make sense) and one explicitly set to zero.3 Djangop should properly distinguish between unknown content-length (when trying to read might make sense) and one explicitly set to zero. 4 4 5 The repro in my case is really simple. Get the latest uWSGI, spin up simple django app, send a postwith nothing in it.5 The repro in my case is really simple. Get the latest uWSGI, spin up simple django app, send a POST with nothing in it. 6 6