From 46668d2634c1da8cc945222f4e972ee1b33810cf Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 10 Oct 2012 10:34:24 -0400 Subject: [PATCH] Read CONTENTSTORE from auth.json in lms --- lms/envs/aws.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/envs/aws.py b/lms/envs/aws.py index cc33bf07c4..7863dca065 100644 --- a/lms/envs/aws.py +++ b/lms/envs/aws.py @@ -78,6 +78,7 @@ XQUEUE_INTERFACE = AUTH_TOKENS['XQUEUE_INTERFACE'] # Get the MODULESTORE from auth.json, but if it doesn't exist, # use the one from common.py MODULESTORE = AUTH_TOKENS.get('MODULESTORE', MODULESTORE) +CONTENTSTORE = AUTH_TOKENS.get('CONTENTSTORE', CONTENTSTORE) if 'COURSE_ID' in ENV_TOKENS: ASKBOT_URL = "courses/{0}/discussions/".format(ENV_TOKENS['COURSE_ID'])