From 612843d50984b633b1a58de619f7db547e8d8754 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Mon, 26 Mar 2018 09:43:53 +0100 Subject: [PATCH] Run every 15 minutes not 15 minutes past the hour --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index ed521303d..67d047ed8 100644 --- a/app/config.py +++ b/app/config.py @@ -269,7 +269,7 @@ class Config(object): }, 'replay_created_notifications': { 'task': 'replay_created_notifications', - 'schedule': crontab(minute=15), + 'schedule': crontab(minutes=15), 'options': {'queue': QueueNames.PERIODIC} } }