We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65dfafb commit 37e9612Copy full SHA for 37e9612
src/main/java/org/columbia/parikshan/duplicator/DuplicatorFrontendHandler.java
@@ -87,7 +87,7 @@ public void operationComplete(ChannelFuture future) {
87
.option(ChannelOption.AUTO_READ, false);
88
ChannelFuture server3Future = server3Bootstrap.connect(remoteHost2, remotePort2);
89
server3OutboundChannel = server3Future.channel();
90
- System.out.println("High Water Mark" + server3OutboundChannel.config().getWriteBufferHighWaterMark());
+ //System.out.println("High Water Mark" + server3OutboundChannel.config().getWriteBufferHighWaterMark());
91
// Here we are going to add channels to channel group to save bytebuf work
92
//channels.add(server2OutboundChannel);
93
//channels.add(server3OutboundChannel);
0 commit comments