Github user anmolnar commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/430#discussion_r156599702
--- Diff: src/java/main/org/apache/zookeeper/ClientCnxn.java ---
@@ -1041,6 +1041,8 @@ private void sendPing() {
private InetSocketAddress rwServerAddress = null;
+ private InetSocketAddress addr = null;
--- End diff --
Remote side of the connection. Basically the ip address that the client is
trying to connect to. ```rwServerAddress``` is the address of non-R/O server
found if there's any.
I'll change this to ```serverAddress```.
---