This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 20783d8624b refactor(hitl): remove AirflowException from
HITLTriggerEventError inheritance (#55763)
20783d8624b is described below
commit 20783d8624b15a7004c8b835c9214be510c4100e
Author: Wei Lee <[email protected]>
AuthorDate: Thu Sep 18 06:20:19 2025 +0800
refactor(hitl): remove AirflowException from HITLTriggerEventError
inheritance (#55763)
---
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."""