From e6e573c462fe961f69664de9306792e82e6f3c9d Mon Sep 17 00:00:00 2001 From: Jothi Prakash Date: Fri, 20 Dec 2024 22:50:12 +0530 Subject: [PATCH] Added extra space --- src/databricks/sql/auth/retry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/databricks/sql/auth/retry.py b/src/databricks/sql/auth/retry.py index 606ac04c..0243d0aa 100755 --- a/src/databricks/sql/auth/retry.py +++ b/src/databricks/sql/auth/retry.py @@ -343,6 +343,7 @@ def should_retry(self, method: str, status_code: int) -> Tuple[bool, str]: Returns True if the request should be retried. Returns False or raises an exception if a retry would violate the configured policy. """ + # Request succeeded. Don't retry. if status_code == 200: return False, "200 codes are not retried"