You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get io.netty.handler.codec.compression.DecompressionException: Input is not in the GZIP format from some urls when header accept-encoding: gzip is used. When I turn decompression off and decompress the content myself using java.util.zip.GZIPInputStream, there is no problem with decompression.
To turn decompression off I use
new DefaultAsyncHttpClientConfig.Builder()
.setHttpAdditionalChannelInitializer(
ch -> {
ch.pipeline().remove(ChannelManager.INFLATER_HANDLER);
})
I get
io.netty.handler.codec.compression.DecompressionException: Input is not in the GZIP format
from some urls when headeraccept-encoding: gzip
is used. When I turn decompression off and decompress the content myself usingjava.util.zip.GZIPInputStream
, there is no problem with decompression.To turn decompression off I use
Examples of url where I got
DecompressionException
:https://www.slovakparagliding.sk/product/swing-mito/
http://www.poslatpohladnicu.sk/myslim-na-svadbu-s-tebou/605.html
https://vinko.sk/casopis-vinoteka/vinoteka-1-2015-v-predaji-520
http://www.novota-art.sk/quote/motesickych1/
The text was updated successfully, but these errors were encountered: