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.
This commit is contained in:
Rebecca Law
2019-11-06 10:49:46 +00:00
parent db5a50c5a7
commit 74546a265e
+5
View File
@@ -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'),