Changes between Initial Version and Version 1 of Ticket #17187, comment 6


Ignore:
Timestamp:
Nov 11, 2011, 4:35:26 PM (12 years ago)
Author:
Leo Shklovskii

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.
     1A 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.
    22
    3 It should properly distinguish between unknown content-length (when trying to read might make sense) and one explicitly set to zero.
     3Djangop should properly distinguish between unknown content-length (when trying to read might make sense) and one explicitly set to zero.
    44
    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.
     5The repro in my case is really simple. Get the latest uWSGI, spin up simple django app, send a POST with nothing in it.
    66
Back to Top