Reintroduced initial sleep period in block archiver.

This commit is contained in:
CalDescent 2022-09-25 19:43:56 +01:00 committed by Matthew DeGarmo
parent 25886d1438
commit 27104a6b76

View File

@ -16,7 +16,7 @@ public class BlockArchiver implements Runnable {
private static final Logger LOGGER = LogManager.getLogger(BlockArchiver.class);
private static final long INITIAL_SLEEP_PERIOD = 0L; // TODO: 5 * 60 * 1000L + 1234L; // ms
private static final long INITIAL_SLEEP_PERIOD = 5 * 60 * 1000L + 1234L; // ms
public void run() {
Thread.currentThread().setName("Block archiver");