Merge pull request #1292 from alphagov/ken-update-ftp-scheduled-task-times

Update ftp tasks to send in the evening rather than the morning
This commit is contained in:
kentsanggds
2017-10-05 12:50:52 +01:00
committed by GitHub

View File

@@ -227,12 +227,12 @@ class Config(object):
}, },
'run-letter-jobs': { 'run-letter-jobs': {
'task': 'run-letter-jobs', 'task': 'run-letter-jobs',
'schedule': crontab(hour=5, minute=30), 'schedule': crontab(hour=17, minute=30),
'options': {'queue': QueueNames.PERIODIC} 'options': {'queue': QueueNames.PERIODIC}
}, },
'run-letter-api-notifications': { 'run-letter-api-notifications': {
'task': '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} 'options': {'queue': QueueNames.PERIODIC}
} }
} }