Opened 18 years ago
Closed 18 years ago
#3619 closed (invalid)
HttpResponse bug screws up chunked transfer-coding
Description ¶
When an HttpResponse is created, the _container defaults to [""]. Later additions are appended, so you end up with ["", "Actual content here."]. Such a response fails when sent by CherryPy's wsgiserver.py in HTTP/1.1 mode, because the chunked transfer-coding implementation sends a last-chunk token for that first "" in _container.
The attached patch solves the problem by initializing _container to an empty list ([]) when HttpRequest is constructed with content="".
This bug first surfaced in Aspen.
Change History (2)
by , 18 years ago
Attachment: | chunked.patch added |
---|
comment:1 by , 18 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
The bug lies more properly with CherryPyWSGIServer: it should only write chunks that are non-empty. And in fact, this change has been made in CherryPy 3.0.1.
Sorry to bother you!
patch to make HttpResponse play nicer with HTTP/1.1