Skip to content

Commit c222580

Browse files
update DummyOperator -> EmptyOperator
1 parent 365049e commit c222580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airflow/dags/polygonetl_airflow/build_export_dag.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from tempfile import TemporaryDirectory
88

99
from airflow import DAG, configuration
10-
from airflow.operators.dummy import DummyOperator
10+
from airflow.operators.empty import EmptyOperator
1111
from airflow.operators.python import PythonOperator
1212

1313
from polygonetl.cli import (
@@ -345,7 +345,7 @@ def add_export_task(
345345
return None
346346

347347
# Operators
348-
export_complete = DummyOperator(task_id="export_complete", dag=dag)
348+
export_complete = EmptyOperator(task_id="export_complete", dag=dag)
349349

350350
export_blocks_and_transactions_operator = add_export_task(
351351
export_blocks_and_transactions_toggle,

0 commit comments

Comments
 (0)