Github user Randgalt commented on a diff in the pull request:
https://github.com/apache/curator/pull/266#discussion_r194463357
--- Diff:
curator-client/src/main/java/org/apache/curator/ConnectionState.java ---
@@ -112,14 +112,17 @@ void start() throws Exception
}
@Override
- public void close() throws IOException
- {
+ public void close() throws IOException {
+ close(0);
+ }
+
+ public void close(int timeout) throws IOException {
--- End diff --
please rename to `timeoutMs`---
