Skip to content

Commit

Permalink
Merge pull request #35 from airflow-laminar/tkp/poke
Browse files Browse the repository at this point in the history
use poke instead of reschedule
  • Loading branch information
timkpaine authored Aug 24, 2024
2 parents 6332dba + 8ea2eba commit b9694cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow_supervisor/airflow/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def get_step_operator(self, step: SupervisorTaskStep) -> Operator:
"task_id": f"{self.dag_id}-{step}",
"poke_interval": self._supervisor_cfg.check_interval.total_seconds(),
"timeout": self._supervisor_cfg.check_timeout.total_seconds(),
"mode": "reschedule",
"mode": "poke",
**self.get_base_operator_kwargs(),
**self.get_step_kwargs(step),
}
Expand Down

0 comments on commit b9694cc

Please sign in to comment.