Github user lvfangmin commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/447#discussion_r205920893
--- Diff: src/java/test/org/apache/zookeeper/test/ClientBase.java ---
@@ -72,7 +72,7 @@
static final File BASETEST =
new File(System.getProperty("build.test.dir", "build"));
- protected String hostPort = "127.0.0.1:" + PortAssignment.unique();
+ public String hostPort = "127.0.0.1:" + PortAssignment.unique();
--- End diff --
Was trying to change these settings to public so I can reference it in the
SessionUpgradeQuorumTest.java, I guess I find a different way to to that and
forgot to revert this change, will verify and remove this change if it's not
necessary.
---