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:
parent
0287a1fb7b
commit
6e2df4c617
|
@ -998,6 +998,6 @@ public class HRegionFileSystem {
|
|||
return;
|
||||
}
|
||||
LOG.debug(msg + ", sleeping " + baseSleepBeforeRetries + " times " + sleepMultiplier);
|
||||
Threads.sleep(baseSleepBeforeRetries * sleepMultiplier);
|
||||
Threads.sleep((long)baseSleepBeforeRetries * sleepMultiplier);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue