Brotli seems to cause issues, disable it

This commit is contained in:
Alex 2021-12-10 00:03:34 +01:00
parent f7a5b29b71
commit e3a030ceaf
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 5 additions and 5 deletions

View File

@ -190,7 +190,7 @@ async fn try_compress(
.1; .1;
let preference = [ let preference = [
Encoding::Zstd, Encoding::Zstd,
Encoding::Brotli, //Encoding::Brotli,
Encoding::Deflate, Encoding::Deflate,
Encoding::Gzip, Encoding::Gzip,
]; ];
@ -269,10 +269,10 @@ async fn try_compress(
.insert(header::CONTENT_ENCODING, "gzip".parse()?); .insert(header::CONTENT_ENCODING, "gzip".parse()?);
Body::wrap_stream(ReaderStream::new(GzipEncoder::new(body_rd))) Body::wrap_stream(ReaderStream::new(GzipEncoder::new(body_rd)))
} }
Encoding::Brotli => { // Encoding::Brotli => {
head.headers.insert(header::CONTENT_ENCODING, "br".parse()?); // head.headers.insert(header::CONTENT_ENCODING, "br".parse()?);
Body::wrap_stream(ReaderStream::new(BrotliEncoder::new(body_rd))) // Body::wrap_stream(ReaderStream::new(BrotliEncoder::new(body_rd)))
} // }
Encoding::Deflate => { Encoding::Deflate => {
head.headers head.headers
.insert(header::CONTENT_ENCODING, "deflate".parse()?); .insert(header::CONTENT_ENCODING, "deflate".parse()?);