Changes between Initial Version and Version 3 of Ticket #35838
- Timestamp:
- Oct 14, 2024, 11:10:49 AM (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35838
- Property Summary request.read() returns empty for Rueqests w/ Transfer-Encoding: Chunked → request.read() returns empty for Requests w/ Transfer-Encoding: Chunked
- Property Cc added
- Property Component Uncategorized → HTTP handling
-
Ticket #35838 – Description
initial v3 67 67 68 68 def __call__(self, request): 69 if request.META.get("HTTP_TRANSFER_ENCODING").lower() == "chunked" and \ 69 if "HTTP_TRANSFER_ENCODING" in request.META and \ 70 request.META["HTTP_TRANSFER_ENCODING"].lower() == "chunked" and \ 70 71 not request.META.get("wsgi.input_terminated"): 71 72