From b22f35b71dfc7e5fcb3329faa687cdc58a7213d6 Mon Sep 17 00:00:00 2001 From: cahrens Date: Thu, 10 Aug 2017 13:11:59 -0400 Subject: [PATCH] Disable ENABLE_SEPARATE_ARCHIVED_COURSES due to server error. EDUCATOR-1134 --- cms/envs/bok_choy.py | 4 ++++ cms/envs/common.py | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cms/envs/bok_choy.py b/cms/envs/bok_choy.py index a81a35ef0d..c37f357bc0 100644 --- a/cms/envs/bok_choy.py +++ b/cms/envs/bok_choy.py @@ -101,6 +101,10 @@ FEATURES['ENABLE_VIDEO_BUMPER'] = True # Enable video bumper in Studio settings FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True +# Whether archived courses (courses with end dates in the past) should be +# shown in Studio in a separate list. +FEATURES['ENABLE_SEPARATE_ARCHIVED_COURSES'] = True + # Enable support for OpenBadges accomplishments FEATURES['ENABLE_OPENBADGES'] = True diff --git a/cms/envs/common.py b/cms/envs/common.py index 24e8226286..b342f62d01 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -254,8 +254,9 @@ FEATURES = { 'ENABLE_ENROLLMENT_TRACK_USER_PARTITION': True, # Whether archived courses (courses with end dates in the past) should be - # shown in Studio in a separate list. - 'ENABLE_SEPARATE_ARCHIVED_COURSES': True + # shown in Studio in a separate list. Note that attempting to enable this + # failed on stage-- see EDUCATOR-1134. + 'ENABLE_SEPARATE_ARCHIVED_COURSES': False } ENABLE_JASMINE = False