Github user hanm commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/150#discussion_r96702291 --- Diff: src/java/main/org/apache/zookeeper/client/StaticHostProvider.java --- @@ -57,26 +62,20 @@ public StaticHostProvider(Collection<InetSocketAddress> serverAddresses) throws UnknownHostException { for (InetSocketAddress address : serverAddresses) { - InetAddress ia = address.getAddress(); - InetAddress resolvedAddresses[] = InetAddress.getAllByName((ia!=null) ? ia.getHostAddress(): - address.getHostName()); + InetAddress resolvedAddresses[]; + try { + Method m = InetSocketAddress.class.getDeclaredMethod("getHostString"); + m.setAccessible(true); + resolvedAddresses = InetAddress.getAllByName((String) m.invoke(address)); + } catch (IllegalAccessException e) { --- End diff -- Right, I forgot the context, thanks for pointing this out @eribeiro
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---