From b4a92ee1be66f764fabf05b258fccebc26d73514 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Thu, 13 Jan 2022 09:31:19 -0500 Subject: [PATCH] docs: COURSEGRAPH_JOB_QUEUE is a setting, not a toggle (#29759) This will fix a pylint failure that currently exists because toggle_default is expected to be 'True' or 'False'. --- cms/envs/common.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index cbd7f7012b..ccf6adc514 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -2195,13 +2195,10 @@ 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 +# .. setting_name: COURSEGRAPH_JOB_QUEUE +# .. setting_default: value of LOW_PRIORITY_QUEUE +# .. setting_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 ############