We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a917f36 commit a8dc37dCopy full SHA for a8dc37d
1 file changed
docs/modules/airflow/examples/example-configmap.yaml
@@ -7,8 +7,8 @@ data:
7
test_airflow_dag.py: | # <2>
8
from datetime import datetime, timedelta
9
from airflow import DAG
10
- from airflow.operators.bash import BashOperator
11
- from airflow.operators.dummy import DummyOperator
+ from airflow.providers.standard.operators.bash import BashOperator
+ from airflow.providers.standard.operators.empty import EmptyOperator
12
13
with DAG(
14
dag_id='test_airflow_dag',
@@ -19,7 +19,7 @@ data:
19
tags=['example', 'example2'],
20
params={"example_key": "example_value"},
21
) as dag:
22
- run_this_last = DummyOperator(
+ run_this_last = EmptyOperator(
23
task_id='run_this_last',
24
)
25
0 commit comments