From 81f7d104522bfaf056f3066b4e8a4579a441b696 Mon Sep 17 00:00:00 2001 From: Ken Clary Date: Fri, 5 Nov 2021 14:36:37 -0400 Subject: [PATCH] fix: correct path for dump_course_to_neo4j task, so it goes to correct celery queue. TNL-8386 --- cms/envs/production.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/envs/production.py b/cms/envs/production.py index 3aebf6a6ac..baf4e2e437 100644 --- a/cms/envs/production.py +++ b/cms/envs/production.py @@ -587,7 +587,7 @@ EXPLICIT_QUEUES = { 'queue': POLICY_CHANGE_GRADES_ROUTING_KEY}, 'cms.djangoapps.contentstore.tasks.update_search_index': { 'queue': UPDATE_SEARCH_INDEX_JOB_QUEUE}, - 'openedx.core.djangoapps.coursegraph.dump_course_to_neo4j': { + 'openedx.core.djangoapps.coursegraph.tasks.dump_course_to_neo4j': { 'queue': COURSEGRAPH_JOB_QUEUE}, }