From 06d2f1463411bb12a9cc693c8eebf4f7fde8fcfe Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Thu, 13 Jan 2022 08:53:48 -0500 Subject: [PATCH] docs: document COURSEGRAPH_JOG_QUEUE toggle --- cms/envs/common.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index 6f4ab636a4..cbd7f7012b 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -2194,6 +2194,14 @@ SOFTWARE_SECURE_VERIFICATION_ROUTING_KEY = 'edx.lms.core.default' POLICY_CHANGE_TASK_RATE_LIMIT = '300/h' ############## Settings for CourseGraph ############################ + +# .. toggle_name: COURSEGRAPH_JOB_QUEUE +# .. toggle_implementation: DjangoSetting +# .. toggle_default: value of LOW_PRIORITY_QUEUE +# .. toggle_description: The name of the Celery queue to which CourseGraph refresh +# tasks will be sent +# .. toggle_use_cases: open_edx +# .. toggle_creation_date: 2021-10-01 COURSEGRAPH_JOB_QUEUE = LOW_PRIORITY_QUEUE ########## Settings for video transcript migration tasks ############