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"