Skip to content

Commit

Permalink
Fix clock trigger retry bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MetRonnie committed Jan 10, 2023
1 parent 1106c8b commit ab72c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cylc/flow/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1591,11 +1591,11 @@ async def main_loop(self) -> None:
):
self.pool.queue_task(itask)

# Old-style clock-trigger tasks:
if (
itask.tdef.clocktrigger_offset is not None
and itask.is_waiting_clock_done()
and all(itask.is_ready_to_run())
):
# Old-style clock-trigger tasks.
self.pool.queue_task(itask)

if housekeep_xtriggers:
Expand Down

0 comments on commit ab72c38

Please sign in to comment.