alb3rtobr commented on a change in pull request #6116:
URL: https://github.com/apache/geode/pull/6116#discussion_r600855043
##########
File path:
geode-common/src/main/java/org/apache/geode/internal/inet/LocalHostUtil.java
##########
@@ -242,6 +242,10 @@ public static InetAddress getAnyLocalAddress() {
return new InetSocketAddress(0).getAddress();
}
+ public static boolean isWildcardAddress(String address) {
+ return (address != null && (address.equals("0.0.0.0") ||
address.equals("::")));
Review comment:
Good catch! I have just added a commit fixing this. Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]