HBASE-8651 Result of integer multiplication cast to long in HRegionFileSystem#sleepBeforeRetry() (Samar)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1493229 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2013-06-14 20:03:09 +00:00
parent 0287a1fb7b
commit 6e2df4c617
1 changed files with 1 additions and 1 deletions

View File

@ -998,6 +998,6 @@ public class HRegionFileSystem {
return;
}
LOG.debug(msg + ", sleeping " + baseSleepBeforeRetries + " times " + sleepMultiplier);
Threads.sleep(baseSleepBeforeRetries * sleepMultiplier);
Threads.sleep((long)baseSleepBeforeRetries * sleepMultiplier);
}
}