Skip to content

Commit

Permalink
fix check-style
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jf committed Oct 31, 2023
1 parent ff55bfa commit ff49393
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/net/snowflake/client/jdbc/RestRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ public static CloseableHttpResponse execute(
}
if (retryTimeoutInMilliseconds > 0
&& (elapsedMilliForTransientIssues + backoffInMilli) > retryTimeoutInMilliseconds) {
// If the timeout will be reached before the next backoff, just use the remaining time.
// If the timeout will be reached before the next backoff, just use the remaining
// time.
backoffInMilli =
Math.min(
backoffInMilli, retryTimeoutInMilliseconds - elapsedMilliForTransientIssues);
Expand Down

0 comments on commit ff49393

Please sign in to comment.