-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
KTOR-7679 Allow disabling body decoding on server #4444
base: 3.1.0-eap
Are you sure you want to change the base?
Conversation
5aac0ae
to
5fe5955
Compare
...er-plugins/ktor-server-compression/jvm/src/io/ktor/server/plugins/compression/Compression.kt
Show resolved
Hide resolved
} | ||
|
||
@Test | ||
fun testDisableCallDecoding() = testApplication { |
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.
Why function suppressDecompression()
is not used?
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.
fixed
Hey, @marychatte! Thank you for the review. I've spotted other issue, let me check |
* Use stdlib `use` extension-function * Update type checks
Co-authored-by: Osip Fatkullin <[email protected]>
…4411) * Drop `jvmAndNix` shared source set * Commonize `ktor-network` and `ktor-network-tls` * Support TCP and Unix sockets for wasm-js and js on Node * Move `supportsUnixDomainSockets` to posix and use Platform instead of expect/actual
* Support multiple client engines for JS/WasmJs * CIO client Js/WasmJs support * Enable CIO tests in client tests * Make client engines `data object` to have `toString` * Make ClientLoader work with multiple engines on js/wasmJs and so test CIO engine on nodejs(js+wasmJs)
* KTOR-6632 Support receiving multipart data with Ktor client
dda2176
to
bcdb40c
Compare
Hey, @marychatte! Sorry for the delay, there was an issue with body decompression. |
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.
lgtm 👍
Fix KTOR-7679 Allow to Disable Body Decompression on the Server for a specific call