From 109fbb9f7cf88f790b4c6b8370d13ed6775af3a3 Mon Sep 17 00:00:00 2001 From: Ken Clary Date: Fri, 29 Oct 2021 16:00:35 -0400 Subject: [PATCH] fix: move coursegraph celery tasks to cms (from lms), and on a non-default, non-high-priority queue. This is so that the lms default celery queue does not get backed up when coursegraph is hosed (which is likely when coursegraph has been redeployed and needs to get the full set of courses). TNL-8386 --- cms/envs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 9ad011750c..7c5753a5bf 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1389,7 +1389,7 @@ CELERY_DEFAULT_ROUTING_KEY = DEFAULT_PRIORITY_QUEUE CELERY_QUEUES = { HIGH_PRIORITY_QUEUE: {}, DEFAULT_PRIORITY_QUEUE: {}, - LOW_PRIORITY_QUEUE: {} + LOW_PRIORITY_QUEUE: {}, } # Queues configuration