Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Sep 29, 2023
1 parent 16ecd7f commit e6209c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public String uri() {

@Override
public BytesReference content() {
// throw new RuntimeException("Not implemented");
return BytesArray.EMPTY;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ protected void initChannel(Channel childChannel) throws Exception {
.addLast("decoder_compress", new Netty4ConditionalDecompressor());

if (handlingSettings.isCompression()) {
childChannel.pipeline().addLast("compress", new HttpContentCompressor(handlingSettings.getCompressionLevel()));
childChannel.pipeline()
.addLast("encoder_compress", new HttpContentCompressor(handlingSettings.getCompressionLevel()));
}

childChannel.pipeline()
Expand Down

0 comments on commit e6209c7

Please sign in to comment.