This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 929c1955aaeeb2794beeb293f55118d8edbf49ca Author: Wei Lee <[email protected]> AuthorDate: Thu Sep 18 06:20:19 2025 +0800 refactor(hitl): remove AirflowException from HITLTriggerEventError inheritance (#55763) (cherry picked from commit 20783d8624b15a7004c8b835c9214be510c4100e) --- providers/standard/src/airflow/providers/standard/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/standard/src/airflow/providers/standard/exceptions.py b/providers/standard/src/airflow/providers/standard/exceptions.py index f47e9f3896f..98449fed173 100644 --- a/providers/standard/src/airflow/providers/standard/exceptions.py +++ b/providers/standard/src/airflow/providers/standard/exceptions.py @@ -57,7 +57,7 @@ class DuplicateStateError(AirflowExternalTaskSensorException): """Raised when duplicate states are provided across allowed, skipped and failed states.""" -class HITLTriggerEventError(AirflowException): +class HITLTriggerEventError(Exception): """Raised when TriggerEvent contains error."""
