We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4014786 commit 43d9017Copy full SHA for 43d9017
1 file changed
dd-java-agent/instrumentation/netty/netty-4.1/src/test/groovy/Netty41ServerTest.groovy
@@ -75,7 +75,7 @@ abstract class Netty41ServerTest extends HttpServerTest<EventLoopGroup> {
75
ChannelPipeline pipeline = ch.pipeline()
76
pipeline.addFirst("logger", LOGGING_HANDLER)
77
pipeline.addLast(new HttpServerCodec())
78
- pipeline.addLast(new HttpObjectAggregator(1024))
+ pipeline.addLast(new HttpObjectAggregator(1024 * 1024))
79
pipeline.addLast(new WebSocketServerProtocolHandler("/websocket"))
80
pipeline.addLast([
81
channelRead0 : { ChannelHandlerContext ctx, msg ->
0 commit comments