From e79576747ad41337430ea5a49b0c70897487b09a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCller?= Date: Thu, 21 May 2026 11:25:33 +0200 Subject: [PATCH 1/2] fix: Replace DummyOperator by EmptyOperator as it was removed in Airflow 2.4.3 --- docs/modules/airflow/examples/example-configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/airflow/examples/example-configmap.yaml b/docs/modules/airflow/examples/example-configmap.yaml index 7962aef9..7f5e932a 100644 --- a/docs/modules/airflow/examples/example-configmap.yaml +++ b/docs/modules/airflow/examples/example-configmap.yaml @@ -8,7 +8,7 @@ data: from datetime import datetime, timedelta from airflow import DAG from airflow.operators.bash import BashOperator - from airflow.operators.dummy import DummyOperator + from airflow.operators.empty import EmptyOperator with DAG( dag_id='test_airflow_dag', @@ -19,7 +19,7 @@ data: tags=['example', 'example2'], params={"example_key": "example_value"}, ) as dag: - run_this_last = DummyOperator( + run_this_last = EmptyOperator( task_id='run_this_last', ) From ac35e56e981d966dcf1cf11b3c687b51c70b42eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCller?= Date: Fri, 22 May 2026 09:18:15 +0200 Subject: [PATCH 2/2] fix: it was moved once more --- docs/modules/airflow/examples/example-configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/airflow/examples/example-configmap.yaml b/docs/modules/airflow/examples/example-configmap.yaml index 7f5e932a..a185ad14 100644 --- a/docs/modules/airflow/examples/example-configmap.yaml +++ b/docs/modules/airflow/examples/example-configmap.yaml @@ -7,8 +7,8 @@ data: test_airflow_dag.py: | # <2> from datetime import datetime, timedelta from airflow import DAG - from airflow.operators.bash import BashOperator - from airflow.operators.empty import EmptyOperator + from airflow.providers.standard.operators.bash import BashOperator + from airflow.providers.standard.operators.empty import EmptyOperator with DAG( dag_id='test_airflow_dag',