dlmarion commented on a change in pull request #2414:
URL: https://github.com/apache/accumulo/pull/2414#discussion_r788988268
##########
File path:
minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
##########
@@ -624,53 +640,80 @@ private void verifyUp() throws InterruptedException,
IOException {
"Error starting TabletServer " + tsExpectedCount + "- instance not
started");
}
- var zrw = getServerContext().getZooReaderWriter();
- String rootPath = getServerContext().getZooKeeperRoot();
+ Watcher w = new Watcher() {
+ public void process(WatchedEvent event) {
+ if (event.getState() == KeeperState.Expired) {
+ log.debug("Session expired, state of current session : {}",
event.getState());
+ }
+ }
+ };
Review comment:
Addressed in 3f7968f
--
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]