Github user afine commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/418#discussion_r151563002
--- Diff: src/java/main/org/apache/zookeeper/server/ServerCnxn.java ---
@@ -85,6 +86,14 @@ public boolean removeAuthInfo(Id id) {
return authInfo.remove(id);
}
+ public boolean isAuthCheckComplete() {
+ return authCheckCompleted;
+ };
--- End diff --
nit: please remove the semicolon after the close bracket---
