From 5f7089fea04ae7016bbf86ebad9a60ae2ae14b3c Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 10 Jan 2025 11:51:42 -0800 Subject: [PATCH] add countdown of 30 seconds for deliveries --- app/celery/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/celery/tasks.py b/app/celery/tasks.py index 3743aa294..4086f684a 100644 --- a/app/celery/tasks.py +++ b/app/celery/tasks.py @@ -256,7 +256,7 @@ def save_sms(self, service_id, notification_id, encrypted_notification, sender_i ) ) provider_tasks.deliver_sms.apply_async( - [str(saved_notification.id)], queue=QueueNames.SEND_SMS + [str(saved_notification.id)], queue=QueueNames.SEND_SMS, countdown=30 ) current_app.logger.debug(