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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to