From 479129eb21bebcadc8463ddede0799198999171b Mon Sep 17 00:00:00 2001 From: Justin Hynes Date: Tue, 4 Oct 2022 13:19:20 -0400 Subject: [PATCH] fix: update new `update_certificate_available_date_on_course_update` task to use credentials queue [APER-1941] * update new `update_certificate_available_date_on_course_update` task to use dedicated credentials queue (like the other import Credentials tasks) --- lms/envs/production.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lms/envs/production.py b/lms/envs/production.py index 7e91e535e5..d1c5a08aa2 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -1041,6 +1041,8 @@ EXPLICIT_QUEUES = { 'queue': PROGRAM_CERTIFICATES_ROUTING_KEY}, 'openedx.core.djangoapps.programs.tasks.update_certificate_visible_date_on_course_update': { 'queue': PROGRAM_CERTIFICATES_ROUTING_KEY}, + 'openedx.core.djangoapps.programs.tasks.update_certificate_available_date_on_course_update': { + 'queue': PROGRAM_CERTIFICATES_ROUTING_KEY}, 'openedx.core.djangoapps.programs.tasks.award_course_certificate': { 'queue': PROGRAM_CERTIFICATES_ROUTING_KEY}, }