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 }, },