Skip to content

Commit

Permalink
fix: job_end_event trigger set to all_success (#510)
Browse files Browse the repository at this point in the history
* fix: set publish_job_end_event trigger to 'all_success'

* fix: set publish_job_end_event trigger to 'all_success'
  • Loading branch information
Mryashbhardwaj committed Aug 10, 2022
1 parent fe3bb2a commit f61bfb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/scheduler/airflow2/resources/base_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
task_id = JOB_END_EVENT_NAME,
python_callable = log_job_end,
provide_context=True,
trigger_rule= 'all_done',
trigger_rule= 'all_success',
dag=dag
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
task_id = JOB_END_EVENT_NAME,
python_callable = log_job_end,
provide_context=True,
trigger_rule= 'all_done',
trigger_rule= 'all_success',
dag=dag
)

Expand Down

0 comments on commit f61bfb1

Please sign in to comment.