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.
This commit is contained in:
Rebecca Law
2018-03-01 11:47:00 +00:00
parent 5134864a9e
commit be7989bbc9

View File

@@ -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),