Technoboy- commented on code in PR #16473:
URL: https://github.com/apache/pulsar/pull/16473#discussion_r917196775
##########
testmocks/src/main/java/org/apache/zookeeper/MockZooKeeper.java:
##########
@@ -633,6 +645,10 @@ public void getChildren(final String path, boolean
watcher, final Children2Callb
String child = relativePath.split("/", 2)[0];
children.add(child);
});
+ } catch (Throwable ex) {
+ log.error("get children : {} error", path, ex);
+ cb.processResult(KeeperException.Code.SYSTEMERROR.intValue(),
path, ctx, null, null);
+ return;
Review Comment:
The same with above.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]