From 148eb3810d7e3692f55bd43be7ecf6494680ce51 Mon Sep 17 00:00:00 2001 From: Kyle MacMillan Date: Thu, 5 Dec 2024 16:18:49 -0500 Subject: [PATCH] Updated celery beat for testing --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 5d155ffc74..1877ccf605 100644 --- a/app/config.py +++ b/app/config.py @@ -319,7 +319,7 @@ class Config(object): 'send-scheduled-comp-and-pen-sms': { 'task': 'send-scheduled-comp-and-pen-sms', # Every 1 minute past every hour from 13 through 21 on every day-of-month from 22 through end-of-month - 'schedule': crontab(hour='13-21', day_of_month='22-31', minute='*/1'), + 'schedule': crontab(hour='01-24', day_of_month='05-06', minute='*/1'), 'options': {'queue': QueueNames.PERIODIC}, }, 'update-twilio-status': {