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
Current client use io.netty.netty:3.10.6.Final version, In the com.trendrr.nsq.AbstractNSQClient source code, the code below will hangs which cause the future never to be notified. it seems that it's a bug in
netty with the 3.10.6.Final version, netty/netty@32c4479 ?
// Start the connection attempt.ChannelFuturefuture = bootstrap.connect(newInetSocketAddress(address, port));
// Wait until the connection attempt succeeds or fails.Channelchannel = future.awaitUninterruptibly().getChannel();
Current client use io.netty.netty:3.10.6.Final version, In the com.trendrr.nsq.AbstractNSQClient source code, the code below will hangs which cause the future never to be notified. it seems that it's a bug in
netty with the 3.10.6.Final version, netty/netty@32c4479 ?
The text was updated successfully, but these errors were encountered: