We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08827ef commit 0034d46Copy full SHA for 0034d46
src/databricks/sql/auth/thrift_http_client.py
@@ -330,6 +330,9 @@ def make_rest_request(
330
else:
331
raise ValueError("No response received from server")
332
333
+ except urllib3.exceptions.MaxRetryError:
334
+ # Let MaxRetryError pass through without wrapping for test compatibility
335
+ raise
336
except urllib3.exceptions.HTTPError as e:
337
error_message = f"REST HTTP request failed: {str(e)}"
338
logger.error(error_message)
0 commit comments