Fix connRetryInterval parameter interpreted as milliseconds
Change-Id: I8906e952752f6a7395293f5b42943d411b71f10f Closes-Bug: #1522116
This commit is contained in:
parent
e4ca678359
commit
a2148074c5
@ -186,7 +186,7 @@ public class FilterUtils {
|
||||
|
||||
public static void pause(long pauseTime) {
|
||||
try {
|
||||
Thread.sleep(pauseTime);
|
||||
Thread.sleep(pauseTime * 1000);
|
||||
} catch (InterruptedException e) {
|
||||
logger.debug("Thread is interrupted while sleeping before "
|
||||
+ pauseTime + " seconds. ");
|
||||
|
Loading…
x
Reference in New Issue
Block a user