Merge "Fix connRetryInterval parameter interpreted as milliseconds"

This commit is contained in:
Jenkins 2016-01-07 01:50:13 +00:00 committed by Gerrit Code Review
commit b4dcb898ee

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