From 40e535e112d0f49f54065d4adf93571ae9507f94 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Fri, 23 Mar 2018 16:00:13 +0000 Subject: [PATCH] Add the scheduled task to run every 15 minutes. --- app/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/config.py b/app/config.py index 89f586c1f..ed521303d 100644 --- a/app/config.py +++ b/app/config.py @@ -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 = []