Decrease sync thread sleep time to 2 secs

This commit is contained in:
0xboobface 2018-12-10 22:00:29 +01:00
parent 0fe9d9677a
commit dd76774145
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ public class RemoteRecorder implements Recorder {
private void sleep() { private void sleep() {
try { try {
Thread.sleep(10000); Thread.sleep(2000);
} catch (InterruptedException e) { } catch (InterruptedException e) {
// interrupted, probably by stopThread // interrupted, probably by stopThread
} }