On the crazy weekend we checked for scheduled jobs every minute.

This changes that scheduled task to run at the top of the hour, 15, 30, and 45 minutes past
This commit is contained in:
Rebecca Law
2020-10-01 14:14:08 +01:00
parent 298761070c
commit cea46a0758

View File

@@ -194,7 +194,7 @@ class Config(object):
# app/celery/scheduled_tasks.py
'run-scheduled-jobs': {
'task': 'run-scheduled-jobs',
'schedule': crontab(),
'schedule': crontab(minute='0,15,30,45'),
'options': {'queue': QueueNames.PERIODIC}
},
'delete-verify-codes': {