mirror of
https://github.com/actix/actix-web.git
synced 2025-01-23 15:38:06 +00:00
Merge branch 'master' of github.com:actix/actix-web
This commit is contained in:
commit
35911b832a
1 changed files with 4 additions and 0 deletions
|
@ -266,6 +266,10 @@ fn content_encoder(buf: BytesMut, req: &mut ClientRequest) -> Output {
|
|||
}
|
||||
#[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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue