dlmarion commented on code in PR #3167:
URL: https://github.com/apache/accumulo/pull/3167#discussion_r1084006976
##########
server/manager/src/main/java/org/apache/accumulo/manager/Manager.java:
##########
@@ -1251,6 +1258,15 @@ boolean canSuspendTablets() {
throw new IllegalStateException("Exception stopping status thread", e);
}
+ tp.shutdown();
+ try {
+ final long rpcTimeout =
getConfiguration().getTimeInMillis(Property.GENERAL_RPC_TIMEOUT);
+ tp.awaitTermination(Math.max(10000, rpcTimeout / 3),
TimeUnit.MILLISECONDS);
+ } catch (InterruptedException e) {
+ log.debug("Interrupted while fetching status");
+ }
Review Comment:
Removed this code in 967df31
--
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]