From ff4939318387be297bbc9391bdf690c9ebe7d797 Mon Sep 17 00:00:00 2001 From: Jelena Furundzic Date: Tue, 31 Oct 2023 04:42:51 -0700 Subject: [PATCH] fix check-style --- src/main/java/net/snowflake/client/jdbc/RestRequest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/net/snowflake/client/jdbc/RestRequest.java b/src/main/java/net/snowflake/client/jdbc/RestRequest.java index 30b55e76b..ba06ec411 100644 --- a/src/main/java/net/snowflake/client/jdbc/RestRequest.java +++ b/src/main/java/net/snowflake/client/jdbc/RestRequest.java @@ -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);