Add the scheduled task to run every 15 minutes.

This commit is contained in:
Rebecca Law
2018-03-23 16:00:13 +00:00
parent f596d17bf2
commit 40e535e112

View File

@@ -266,6 +266,11 @@ class Config(object):
'task': 'daily-stats-template-usage-by-month',
'schedule': crontab(hour=0, minute=5),
'options': {'queue': QueueNames.PERIODIC}
},
'replay_created_notifications': {
'task': 'replay_created_notifications',
'schedule': crontab(minute=15),
'options': {'queue': QueueNames.PERIODIC}
}
}
CELERY_QUEUES = []