Wait 2 minutes on node startup before trying to fetch followed QDN data.

This commit is contained in:
CalDescent 2022-02-14 19:33:58 +00:00
parent 538ac30b4e
commit 43791f00aa

View File

@ -80,6 +80,9 @@ public class ArbitraryDataManager extends Thread {
Thread.currentThread().setName("Arbitrary Data Manager"); Thread.currentThread().setName("Arbitrary Data Manager");
try { try {
// Wait for node to finish starting up and making connections
Thread.sleep(2 * 60 * 1000L);
while (!isStopping) { while (!isStopping) {
Thread.sleep(2000); Thread.sleep(2000);