Github user anmolnar commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/548#discussion_r197779656 --- Diff: src/java/main/org/apache/zookeeper/client/FourLetterWordMain.java --- @@ -86,7 +86,7 @@ public static String send4LetterWord(String host, int port, String cmd, boolean throws IOException, SSLContextException { LOG.info("connecting to {} {}", host, port); Socket sock; - InetSocketAddress hostaddress= host != null ? new InetSocketAddress(host, port) : + InetSocketAddress hostaddress = host != null ? new InetSocketAddress(host, port) : --- End diff -- Agreed, it's not ideal, but size of the patch makes it easy to deal with I would say.
---