This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new e37f7093ad4 [v3-0-test] Fix example dag
example_external_task_parent_deferrable.py imports (#52956) (#52957)
e37f7093ad4 is described below
commit e37f7093ad4f19450940212cfa1c6c5ce45be53f
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 6 22:56:42 2025 +0200
[v3-0-test] Fix example dag example_external_task_parent_deferrable.py
imports (#52956) (#52957)
(cherry picked from commit aecfc53031371e1d898c31daced4db7d9def9fc3)
Co-authored-by: GPK <[email protected]>
---
.../example_dags/example_external_task_parent_deferrable.py | 6 ------
1 file changed, 6 deletions(-)
diff --git
a/providers/standard/src/airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py
b/providers/standard/src/airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py
index fcfc8b7dac3..ffc04fabdf5 100644
---
a/providers/standard/src/airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py
+++
b/providers/standard/src/airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py
@@ -56,9 +56,3 @@ with DAG(
end = EmptyOperator(task_id="end")
start >> [trigger_child_task, external_task_sensor] >> end
-
- from tests_common.test_utils.watcher import watcher
-
- # This test needs watcher in order to properly mark success/failure
- # when "teardown" task with trigger rule is part of the DAG
- list(dag.tasks) >> watcher()