Skip to content

Commit

Permalink
Added external task sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
smunthik committed Nov 19, 2024
1 parent 65acd05 commit 10e8197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dags/bcts_apply_grants.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
description='DAG to apply grants to BCTS data in ODS',
) as dag:
wait_for_transformation = ExternalTaskSensor(
task_id='wait_for_replication',
task_id='wait_for_transformation',
external_dag_id='bcts_transformations',
external_task_id='task_completion_flag',
timeout=12000, # Timeout in seconds
Expand Down
2 changes: 1 addition & 1 deletion dags/bcts_transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
)

task_completion_flag = DummyOperator(
task_id='task_complete_flag'
task_id='task_completion_flag'
)

wait_for_replication >> annual_developed_volume_transformation >> task_completion_flag

0 comments on commit 10e8197

Please sign in to comment.