Skip to content

Commit

Permalink
airflow: Fix trigger_email tasks dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ish-hcc committed Nov 15, 2024
1 parent d871acf commit 657b012
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
},
{
"name": "send_result_via_email",
"task_component": "trigger_email"
"task_component": "trigger_email",
"dependencies": [
"register_target_to_source_group"
]
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
},
{
"name": "send_result_via_email",
"task_component": "trigger_email"
"task_component": "trigger_email",
"dependencies": [
"software_migration_nfs_server",
"software_migration_web_server"
]
}
]
}
Expand Down

0 comments on commit 657b012

Please sign in to comment.