Run watchdog every 10 seconds instead of every second

This commit is contained in:
0xboobface 2018-11-13 17:25:01 +01:00
parent f6c98cc68d
commit 41a3031f37
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class MyFreeCamsClient {
}
try {
Thread.sleep(1000);
Thread.sleep(10000);
} catch(InterruptedException e) {
LOG.error("WatchDog couldn't sleep", e);
stop();