-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: enable request bodies decompression #4003
feat: enable request bodies decompression #4003
Conversation
Would you be able to test this? You could follow our getting started tuto and tweak the cURL command: |
quickwit/quickwit-serve/src/rest.rs
Outdated
@@ -152,6 +153,7 @@ pub(crate) async fn start_rest_server( | |||
.compress_when(compression_predicate), | |||
) | |||
.layer(cors) | |||
.layer(DecompressionLayer::new().gzip(true)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we support zstd
as well?
Currently |
Yes, my bad. I assumed that |
@unpervertedkid, the best way to go about this is adding support in |
@guilload Okay let me take a look at it |
Description
enable request bodies decompression
How was this PR tested?
this setting hasn't been tested
Related issue
#3990