Fix connRetryInterval parameter interpreted as milliseconds

Change-Id: I8906e952752f6a7395293f5b42943d411b71f10f
Closes-Bug: #1522116
This commit is contained in:
Shinya Kawabata 2015-12-07 12:06:41 +09:00
parent e4ca678359
commit a2148074c5

View File

@ -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. ");