Decrease sync thread sleep time to 2 secs
This commit is contained in:
parent
0fe9d9677a
commit
dd76774145
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue