Reduce synchronization attempts from every 10s to every 60s

This commit is contained in:
catbref 2019-05-16 12:05:09 +01:00
parent 1b58d12005
commit ce2dc9b8ad

View File

@ -219,7 +219,7 @@ public class Controller extends Thread {
try {
while (!isStopping) {
Thread.sleep(10000);
Thread.sleep(60 * 1000);
potentiallySynchronize();