From be7989bbc94f2021598a403053d13f8466189e89 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Thu, 1 Mar 2018 11:47:00 +0000 Subject: [PATCH] Suspend the `delete-letter-notifications` scheduled job. We have an issue with the provider. If we need to resend these letters, we need the notification. --- app/config.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/config.py b/app/config.py index f1c1df76a..65dee5bc3 100644 --- a/app/config.py +++ b/app/config.py @@ -189,11 +189,12 @@ class Config(object): 'schedule': crontab(hour=0, minute=20), 'options': {'queue': QueueNames.PERIODIC} }, - 'delete-letter-notifications': { - 'task': 'delete-letter-notifications', - 'schedule': crontab(hour=0, minute=40), - 'options': {'queue': QueueNames.PERIODIC} - }, + # Suspending the scheduled job to delete letter notifications, because there is a problem with the provider. + # 'delete-letter-notifications': { + # 'task': 'delete-letter-notifications', + # 'schedule': crontab(hour=0, minute=40), + # 'options': {'queue': QueueNames.PERIODIC} + # }, 'delete-inbound-sms': { 'task': 'delete-inbound-sms', 'schedule': crontab(hour=1, minute=0),