Github user TyqITstudent commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/720#discussion_r236065557
--- Diff:
zookeeper-server/src/main/java/org/apache/zookeeper/ClientCnxn.java ---
@@ -616,6 +616,14 @@ private void processEvent(Object event) {
} else {
cb.processResult(rc, clientPath, p.ctx, null);
}
+ } else if (p.response instanceof
GetAllChildrenNumberResponse) {
--- End diff --
> Also need to import GetAllChildrenNumberResponse
OK, thanks for your remind.
---