HTTP/2 doesn't support the Transfer-Encoding: chunked header because it doesn't need the header or additional framing, instead relying on the stream framing mechanism. If users send a request with chunked=True we should not emit the above mentioned header and send the request body without the additional framing.
HTTP/2 doesn't support the
Transfer-Encoding: chunkedheader because it doesn't need the header or additional framing, instead relying on the stream framing mechanism. If users send a request withchunked=Truewe should not emit the above mentioned header and send the request body without the additional framing.