From e81e0705bf032bb6b84419d3094d152fc8e33027 Mon Sep 17 00:00:00 2001 From: Kyle MacMillan Date: Wed, 11 Dec 2024 17:19:28 -0500 Subject: [PATCH] Updated comp and pen celery beat --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 5d155ffc74..827d3ca543 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='13-21', day_of_month='01-31', minute='*/1'), 'options': {'queue': QueueNames.PERIODIC}, }, 'update-twilio-status': {