From 171f5b777dca12e55577e70feff8c5f655b4e4e2 Mon Sep 17 00:00:00 2001 From: Marc Vilanova <39573146+mvilanova@users.noreply.github.com> Date: Wed, 20 Jul 2022 14:45:43 -0700 Subject: [PATCH] Update scheduled.py (#2368) --- src/dispatch/task/scheduled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/task/scheduled.py b/src/dispatch/task/scheduled.py index a38b53901c19..2d2ade292c87 100644 --- a/src/dispatch/task/scheduled.py +++ b/src/dispatch/task/scheduled.py @@ -106,5 +106,5 @@ def sync_active_stable_tasks(db_session: SessionLocal, project: Project): ) incidents = active_incidents + stable_incidents - lookback = 60 * 5 # 5 min + lookback = 60 * 10 # 10 min sync_tasks(db_session, task_plugin, incidents, lookback=lookback, notify=True)