Skip to content

Commit

Permalink
decreased initial delay to 1 min to be able to trigger disk check fas…
Browse files Browse the repository at this point in the history
…t on app restart
  • Loading branch information
dilshat committed Feb 5, 2018
1 parent dc1fa52 commit b77bdca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ private void initHubRequesters()
CONTAINER_METRIC_SEND_INTERVAL_MIN ), 1, CONTAINER_METRIC_SEND_INTERVAL_MIN, TimeUnit.MINUTES );
//***********
requestorsRunner
.scheduleWithFixedDelay( new ContainerDiskUsageChecker( this, restClient, envManager, localPeer ), 1, 6,
TimeUnit.HOURS );
.scheduleWithFixedDelay( new ContainerDiskUsageChecker( this, restClient, envManager, localPeer ), 1,
6 * 60 /* 6 hours */, TimeUnit.MINUTES );
}


Expand Down

0 comments on commit b77bdca

Please sign in to comment.