You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by hanm <gi...@git.apache.org> on 2018/08/08 04:18:02 UTC

[GitHub] zookeeper pull request #545: ZOOKEEPER-2261 When only secureClientPort is co...

Github user hanm commented on a diff in the pull request:

    https://github.com/apache/zookeeper/pull/545#discussion_r208451880
  
    --- Diff: src/java/main/org/apache/zookeeper/server/ZooKeeperServer.java ---
    @@ -122,8 +122,8 @@
         final Map<String, ChangeRecord> outstandingChangesForPath =
             new HashMap<String, ChangeRecord>();
     
    -    protected ServerCnxnFactory serverCnxnFactory;
    -    protected ServerCnxnFactory secureServerCnxnFactory;
    +    ServerCnxnFactory serverCnxnFactory;
    --- End diff --
    
    `protected` is removed here. Is this intended?


---