pluginhub controller: fix scheduled task delay

This was meant to be 30 minutes
This commit is contained in:
Adam
2020-10-21 10:20:47 -04:00
parent 0e4cfaefa7
commit 9fc8f19c32

View File

@@ -114,7 +114,7 @@ public class PluginHubController
}
}
@Scheduled(fixedDelay = 1_8000_000, initialDelay = 30_000) // 30 minutes with 30 second initial delay
@Scheduled(fixedDelay = 1_800_000, initialDelay = 30_000) // 30 minutes with 30 second initial delay
public void rebuildCounts()
{
Map<String, Long> counts = new HashMap<>();