diff --git a/.github/.github/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .github/.github/pull_request_template.md rename to .github/PULL_REQUEST_TEMPLATE.md diff --git a/src/databricks/sql/auth/retry.py b/src/databricks/sql/auth/retry.py index 0243d0aa2..1c6644ff6 100755 --- a/src/databricks/sql/auth/retry.py +++ b/src/databricks/sql/auth/retry.py @@ -400,7 +400,7 @@ def should_retry(self, method: str, status_code: int) -> Tuple[bool, str]: and status_code not in self.force_dangerous_codes ): raise UnsafeToRetryError( - "ExecuteStatement command can only be retried for codes 429 and 503" + "ExecuteStatement command can only be retried for codes 429 and 503. Received code: {status_code}" ) # Request failed with a dangerous code, was an ExecuteStatement, but user forced retries for this