Github user eolivelli commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/669#discussion_r226683922 --- Diff: zookeeper-common/src/main/java/org/apache/zookeeper/ClientCnxnSocketNetty.java --- @@ -184,7 +213,9 @@ void cleanup() { @Override void close() { - channelFactory.releaseExternalResources(); + if (!eventLoopGroup.isShuttingDown()) { --- End diff -- Is this really needed?
---