iwangjie commented on a change in pull request #375:
URL: https://github.com/apache/curator/pull/375#discussion_r541818171
##########
File path: curator-examples/src/main/java/discovery/DiscoveryExample.java
##########
@@ -192,6 +194,14 @@ private static void
listInstances(ServiceDiscovery<InstanceDetails> serviceDisco
}
}
}
+ catch ( Exception e )
+ {
+ if ( e instanceof KeeperException.NoNodeException )
+ {
+ System.err.println("There are no registered instances.");
+ return;
+ }
Review comment:
Yes, that's what I thought, and I hope what I'm doing now is the same as
what we discussed.
----------------------------------------------------------------
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]