From 74546a265e5ecc8a65c8a6b8ad52f23f5405cf71 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 5 Nov 2019 16:55:43 +0000 Subject: [PATCH] Added cron for check_for_missing_rows_in_completed_jobs Run the task every 10 minutes. Does that seem reasonable? Maybe that is too often. --- app/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/config.py b/app/config.py index e063ec5c7..829d546d9 100644 --- a/app/config.py +++ b/app/config.py @@ -198,6 +198,11 @@ class Config(object): 'schedule': crontab(), 'options': {'queue': QueueNames.PERIODIC} }, + 'check_for_missing_rows_in_completed_jobs': { + 'task': 'check-job-status', + 'schedule': crontab(minute='*/10'), + 'options': {'queue': QueueNames.PERIODIC} + }, 'replay-created-notifications': { 'task': 'replay-created-notifications', 'schedule': crontab(minute='0, 15, 30, 45'),