From 9f709ab08c790bbf6246c57b5caafd58f648f282 Mon Sep 17 00:00:00 2001 From: Mackenzie Halliday Date: Wed, 4 Dec 2024 12:10:26 -0800 Subject: [PATCH] Squash #2137 - Add new celery module to celery configs --- app/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index f4e0b2efdc..1c5a71aafb 100644 --- a/app/config.py +++ b/app/config.py @@ -235,6 +235,7 @@ class Config(object): 'app.celery.process_delivery_status_result_tasks', 'app.celery.v3.notification_tasks', 'app.celery.process_ses_receipts_tasks', + 'app.celery.send_va_profile_notification_tasks', 'app.celery.twilio_tasks', ), 'beat_schedule': { @@ -333,7 +334,7 @@ class Config(object): 'app.celery.v3.notification_tasks.v3_send_email_notification': {'queue': QueueNames.SEND_EMAIL}, 'app.celery.v3.notification_tasks.v3_send_sms_notification': {'queue': QueueNames.SEND_SMS}, 'app.celery.process_ga4_measurement_tasks.post_to_ga4': {'queue': QueueNames.SEND_EMAIL}, - 'app.celery.process_ses_receipts_tasks.send_notification_status_to_va_profile': { + 'app.celery.send_va_profile_notification_tasks.send_notification_status_to_va_profile': { 'queue': QueueNames.CALLBACKS }, },