You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to your code, you need to calculate content-length for multi-part uploads. After doing that, you specifically upload multipart as chunked data with no content-length. This has led to issues for me exactly because of the reason stated in line 155.
when i try to POST, content-length is removed from the headers
After going through all the trouble of calculating size for MultiPartFormRequestBlob, is there a reason why that is then discarded by making MultiPart not a SizedRequestBlob?
ID: 42
Original Author: eric-s-s
link: Original Link
The text was updated successfully, but these errors were encountered:
According to your code, you need to calculate content-length for multi-part uploads. After doing that, you specifically upload multipart as chunked data with no content-length. This has led to issues for me exactly because of the reason stated in line 155.
when i try to POST, content-length is removed from the headers
If i make a post with:
When I POST to myself and look at the headers, the content-length is gone, because it is controlled at the Java level here
My current workaround is this
After going through all the trouble of calculating size for MultiPartFormRequestBlob, is there a reason why that is then discarded by making MultiPart not a SizedRequestBlob?
ID: 42
Original Author: eric-s-s
link: Original Link
The text was updated successfully, but these errors were encountered: