Skip to content

Commit

Permalink
Fix chunked frames support, explicitly set to false
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalinin committed Nov 3, 2017
1 parent 76ae5c9 commit ac72321
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -161,6 +161,8 @@ public void publicRLPxHandshakeFinished(ChannelHandlerContext ctx, FrameCodec fr

logger.debug("publicRLPxHandshakeFinished with " + ctx.channel().remoteAddress());

messageCodec.setSupportChunkedFrames(false);

FrameCodecHandler frameCodecHandler = new FrameCodecHandler(frameCodec, this);
ctx.pipeline().addLast("medianFrameCodec", frameCodecHandler);
ctx.pipeline().addLast("messageCodec", messageCodec);
Expand Down

0 comments on commit ac72321

Please sign in to comment.