config manager: increase sendConfig delay to 5 minutes

This commit is contained in:
Adam
2021-12-21 23:01:34 -05:00
parent 171d9bb7cf
commit 50a2d2f73f

View File

@@ -157,7 +157,7 @@ public class ConfigManager
this.propertiesFile = getPropertiesFile();
this.gson = gson;
scheduledExecutorService.scheduleWithFixedDelay(this::sendConfig, 30, 30, TimeUnit.SECONDS);
scheduledExecutorService.scheduleWithFixedDelay(this::sendConfig, 30, 5 * 60, TimeUnit.SECONDS);
}
public String getRSProfileKey()