Skip to content

Commit 62f5973

Browse files
Merge pull request #6891 from wxtim/fix.overzealous-reload+db-log-messages
demote task action timer - task not found in the reloaded pool warnings
2 parents b604a79 + ee856df commit 62f5973

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cylc/flow/task_pool.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,14 +708,12 @@ def load_db_task_action_timers(self, row_idx: int, row: Iterable) -> None:
708708
if ctx_key == "poll_timer":
709709
itask = self._get_task_by_id(id_)
710710
if itask is None:
711-
LOG.warning("%(id)s: task not found, skip" % {"id": id_})
712711
return
713712
itask.poll_timer = TaskActionTimer(
714713
ctx, delays, num, delay, timeout)
715714
elif ctx_key[0] == "try_timers":
716715
itask = self._get_task_by_id(id_)
717716
if itask is None:
718-
LOG.warning("%(id)s: task not found, skip" % {"id": id_})
719717
return
720718
if 'retrying' in ctx_key[1]:
721719
if 'submit' in ctx_key[1]:

0 commit comments

Comments
 (0)