potiuk commented on PR #29056:
URL: https://github.com/apache/airflow/pull/29056#issuecomment-1398492336
I thik it's a good idea, but do we really need to add a new exception on
that ?
Wouldn't just directly hadling ANY Exception (instead of the specific
Exceptions we list there) do the same job?
Just changing:
```
except (
AirflowClusterPolicyViolation,
AirflowDagCycleException,
AirflowDagDuplicatedIdException,
AirflowDagInconsistent,
ParamValidationError,
) as exception:
```
into:
```
except Exception as exception:
```
--
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]