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