HBASE-20777 RpcConnection could still remain opened after we shutdown the NettyRpcServer
This commit is contained in:
parent
7357b0ce9f
commit
9640ebacd4
|
@ -69,7 +69,8 @@ public class NettyRpcServer extends RpcServer {
|
|||
|
||||
private final CountDownLatch closed = new CountDownLatch(1);
|
||||
private final Channel serverChannel;
|
||||
private final ChannelGroup allChannels = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE);
|
||||
private final ChannelGroup allChannels =
|
||||
new DefaultChannelGroup(GlobalEventExecutor.INSTANCE, true);
|
||||
|
||||
public NettyRpcServer(Server server, String name, List<BlockingServiceAndInterface> services,
|
||||
InetSocketAddress bindAddress, Configuration conf, RpcScheduler scheduler,
|
||||
|
|
Loading…
Reference in New Issue