Changes between Initial Version and Version 3 of Ticket #35838


Ignore:
Timestamp:
Oct 14, 2024, 11:10:49 AM (3 hours ago)
Author:
Klaas van Schelven
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35838

    • Property Summary request.read() returns empty for Rueqests w/ Transfer-Encoding: Chunkedrequest.read() returns empty for Requests w/ Transfer-Encoding: Chunked
    • Property Cc Carlton Gibson added
    • Property Component UncategorizedHTTP handling
  • Ticket #35838 – Description

    initial v3  
    6767
    6868    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 \
    7071                not request.META.get("wsgi.input_terminated"):
    7172
Back to Top