From f194231d872ccb97191df074d37bcfe1b6b177f7 Mon Sep 17 00:00:00 2001 From: David McDonald Date: Tue, 27 Apr 2021 11:26:18 +0100 Subject: [PATCH] Make check-if-letters-still-in-created run at 7am If this alert goes off in the morning, it usually means we need to do something, ideally quite quickly as it indicates a potential problem with the sending of letters over to DVLA the night before. Given this goes off at 9am at the moment, but actually some people start work earlier, if we alert at 7am it means it will likely be looked at earlier in the day and we can potentially fix any problems with letters sooner than later. --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 09465a561..043d82eb8 100644 --- a/app/config.py +++ b/app/config.py @@ -288,7 +288,7 @@ class Config(object): }, 'check-if-letters-still-in-created': { 'task': 'check-if-letters-still-in-created', - 'schedule': crontab(day_of_week='mon-fri', hour=9, minute=0), + 'schedule': crontab(day_of_week='mon-fri', hour=7, minute=0), 'options': {'queue': QueueNames.PERIODIC} }, 'check-if-letters-still-pending-virus-check': {