Merge pull request #31092 from openedx/jhynes/aper-1941_route-new-task-to-program-cert-queue

fix: update new `update_certificate_available_date_on_course_update` task to use dedicated credentials queue
This commit is contained in:
Justin Hynes
2022-10-06 07:51:22 -04:00
committed by GitHub

View File

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