rawwar commented on code in PR #43091:
URL: https://github.com/apache/airflow/pull/43091#discussion_r1804159403
##########
providers/src/airflow/providers/databricks/hooks/databricks_base.py:
##########
@@ -678,6 +679,9 @@ def _retryable_error(exception: BaseException) -> bool:
if exception.status >= 500 or exception.status == 429:
return True
+ if isinstance(exception, ClientConnectorError):
Review Comment:
I did not add any status check here, as the connection was not even
established. Hence, there's no status to be checked
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]