Skip to content

Commit

Permalink
Merge pull request #84 from airflow-laminar/tkp/hf
Browse files Browse the repository at this point in the history
Hotfix to ensure unconfigure supervisor task is present
  • Loading branch information
timkpaine authored Feb 15, 2025
2 parents 5374fda + a4b286d commit 5bc9f42
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions airflow_supervisor/airflow/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ def initialize_tasks(self):
)
else:
self._stop_programs = PythonOperator(task_id=f"{self._dag.dag_id}-stop-programs", python_callable=skip)
self._unconfigure_supervisor = PythonOperator(
task_id=f"{self._dag.dag_id}-unconfigure-supervisor", python_callable=skip
)

self._restart_programs = self.get_step_operator("restart-programs")
self._stop_supervisor = self.get_step_operator("stop-supervisor")
Expand Down

0 comments on commit 5bc9f42

Please sign in to comment.