eolivelli commented on a change in pull request #375:
URL: https://github.com/apache/curator/pull/375#discussion_r541698321
##########
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:
any other exception should be rethrown
----------------------------------------------------------------
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]