From 317ab149f4aeb92b63dac36b54105544895029b4 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Wed, 4 Jul 2018 14:12:47 +0100 Subject: [PATCH] The periodic task to populate ft_notification_status was calling the wrong task, this fixes that. --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 2d6b1d14e..0a490588f 100644 --- a/app/config.py +++ b/app/config.py @@ -217,7 +217,7 @@ class Config(object): 'options': {'queue': QueueNames.PERIODIC} }, 'create-nightly-notification-status': { - 'task': 'create-nightly-billing', + 'task': 'create-nightly-notification-status', 'schedule': crontab(hour=4, minute=30), 'options': {'queue': QueueNames.PERIODIC} },