dlmarion commented on code in PR #3542:
URL: https://github.com/apache/accumulo/pull/3542#discussion_r1245747017
##########
server/manager/src/main/java/org/apache/accumulo/manager/Manager.java:
##########
@@ -449,6 +447,13 @@ public static void main(String[] args) throws Exception {
log.info("SASL is not enabled, delegation tokens will not be available");
delegationTokensAvailable = false;
}
+ long waitTimeBetweenScans =
+ aconf.getTimeInMillis(Property.MANAGER_TABLET_GROUP_WATCHER_INTERVAL);
+ this.timeToCacheRecoveryWalExistence = waitTimeBetweenScans / 4;
+ }
+
+ public long getWaitTimeBetweenScans() {
+ return
this.getConfiguration().getTimeInMillis(Property.MANAGER_TABLET_GROUP_WATCHER_INTERVAL);
Review Comment:
Created a separate property in ff6923e
--
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]