From 9bfeebe01c49720bc711a2242fa985b9d90582d2 Mon Sep 17 00:00:00 2001 From: Sahar Markovich Date: Fri, 20 Jul 2018 14:07:40 -0700 Subject: [PATCH] Add port to activation link to keep it from failing on devstack. This value was defined in lms but not in cms. I discovered this when testing the user account activation link and finding it unable to activate my account on devstack. This change adds the port which fixes the user account activation link in Studio. --- cms/envs/devstack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cms/envs/devstack.py b/cms/envs/devstack.py index 47aa91d929..ea36e73831 100644 --- a/cms/envs/devstack.py +++ b/cms/envs/devstack.py @@ -14,6 +14,7 @@ USER_TASKS_ARTIFACT_STORAGE = COURSE_IMPORT_EXPORT_STORAGE DEBUG = True USE_I18N = True DEFAULT_TEMPLATE_ENGINE['OPTIONS']['debug'] = DEBUG +SITE_NAME = 'localhost:8001' HTTPS = 'off' ################################ LOGGERS ######################################