mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
Merge pull request #387 from actix/fix-missing-content-length
fix missing content length
This commit is contained in:
commit
422a870cd7
@ -266,6 +266,10 @@ fn content_encoder(buf: BytesMut, req: &mut ClientRequest) -> Output {
|
|||||||
}
|
}
|
||||||
#[cfg(not(any(feature = "flate2", feature = "brotli")))]
|
#[cfg(not(any(feature = "flate2", feature = "brotli")))]
|
||||||
{
|
{
|
||||||
|
let mut b = BytesMut::new();
|
||||||
|
let _ = write!(b, "{}", bytes.len());
|
||||||
|
req.headers_mut()
|
||||||
|
.insert(CONTENT_LENGTH, HeaderValue::try_from(b.freeze()).unwrap());
|
||||||
TransferEncoding::eof(buf)
|
TransferEncoding::eof(buf)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user