bhirsz commented on code in PR #26761:
URL: https://github.com/apache/airflow/pull/26761#discussion_r982839083
##########
airflow/providers/common/sql/operators/sql.py:
##########
@@ -60,6 +74,12 @@ def _get_failed_checks(checks, col=None):
]
+def _raise_exception(exception_string, retry_on_failure):
+ if retry_on_failure:
+ raise AirflowException(exception_string)
Review Comment:
This method raises the same exception, with or without retry_on_failure
being True
--
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]