From 7faac304f5389d4ea110f81a6bb594ea5e34cb1e Mon Sep 17 00:00:00 2001 From: Ken Tsang Date: Wed, 4 Oct 2017 10:31:10 +0100 Subject: [PATCH] Update ftp tasks to send in the evening rather than the morning --- app/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config.py b/app/config.py index 7730c4254..9e7410471 100644 --- a/app/config.py +++ b/app/config.py @@ -227,12 +227,12 @@ class Config(object): }, 'run-letter-jobs': { 'task': 'run-letter-jobs', - 'schedule': crontab(hour=5, minute=30), + 'schedule': crontab(hour=17, minute=30), 'options': {'queue': QueueNames.PERIODIC} }, 'run-letter-api-notifications': { 'task': 'run-letter-api-notifications', - 'schedule': crontab(hour=5, minute=40), + 'schedule': crontab(hour=17, minute=40), 'options': {'queue': QueueNames.PERIODIC} } }