Skip to content

Commit 1d8a630

Browse files
committed
User defined Content-Length request header should be honored, close #1440
Motivation: When Content-Length is known beforehand, we shouldn’t ignore it and enforce chunked transfer-encoding. Modification: Honor Content-Length request header when it's defined. Result: Chunked transfer-encoding is no longer enforced
1 parent e0b097d commit 1d8a630

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

client/src/main/java/org/asynchttpclient/netty/request/NettyRequestFactory.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,12 @@ public NettyRequest newNettyRequest(Request request, boolean forceConnect, Proxy
177177
}
178178

179179
if (body != null) {
180-
if (body.getContentLength() < 0) {
181-
headers.set(TRANSFER_ENCODING, HttpHeaderValues.CHUNKED);
182-
} else {
183-
headers.set(CONTENT_LENGTH, body.getContentLength());
180+
if (!headers.contains(CONTENT_LENGTH)) {
181+
if (body.getContentLength() < 0) {
182+
headers.set(TRANSFER_ENCODING, HttpHeaderValues.CHUNKED);
183+
} else {
184+
headers.set(CONTENT_LENGTH, body.getContentLength());
185+
}
184186
}
185187

186188
if (body.getContentTypeOverride() != null) {

0 commit comments

Comments
 (0)