Skip to content

Commit

Permalink
[ISSUE #3102] integer multiplication implicitly cast to long (#3109)
Browse files Browse the repository at this point in the history
* Solved issue #3102

* Update AbstractHTTPPushRequest.java

Added space in line 89
  • Loading branch information
piyush280599 authored Feb 25, 2023
1 parent 693b3c4 commit 987378d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void delayRetry(long delayTime) {
public void delayRetry() {
if (retryTimes < EventMeshConstants.DEFAULT_PUSH_RETRY_TIMES) {
retryTimes++;
delay(retryTimes * EventMeshConstants.DEFAULT_PUSH_RETRY_TIME_DISTANCE_IN_MILLSECONDS);
delay((long) retryTimes * EventMeshConstants.DEFAULT_PUSH_RETRY_TIME_DISTANCE_IN_MILLSECONDS);
retryer.pushRetry(this);
} else {
complete.compareAndSet(Boolean.FALSE, Boolean.TRUE);
Expand Down

0 comments on commit 987378d

Please sign in to comment.