[
https://issues.apache.org/jira/browse/HBASE-8651?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13683716#comment-13683716
]
Ted Yu commented on HBASE-8651:
-------------------------------
Integrated to trunk.
Thanks for the patch, Samar.
Thanks for the review, Ram.
> Result of integer multiplication cast to long in
> HRegionFileSystem#sleepBeforeRetry()
> -------------------------------------------------------------------------------------
>
> Key: HBASE-8651
> URL: https://issues.apache.org/jira/browse/HBASE-8651
> Project: HBase
> Issue Type: Bug
> Reporter: Ted Yu
> Assignee: samar
> Priority: Minor
> Fix For: 0.98.0
>
> Attachments: HBASE-8651.patch
>
>
> {code}
> Threads.sleep(baseSleepBeforeRetries * sleepMultiplier);
> {code}
> Both baseSleepBeforeRetries and sleepMultiplier are integers. Without proper
> casting, their product may be negative.
> Here is an example:
> {code}
> static int i = Integer.MAX_VALUE-1;
> static long j = i * 2;
> {code}
> value of j above is -4 while 4294967292 was the expected value.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira