From 37a8328b7de1bca318acd292ad87341748b8c6ea Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Mon, 1 Dec 2014 11:48:24 -0800 Subject: [PATCH] start with a default oauth key (bug 1106198) --- mkt/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkt/settings.py b/mkt/settings.py index 02ab1594ec2..b657a5e46fd 100644 --- a/mkt/settings.py +++ b/mkt/settings.py @@ -1106,8 +1106,8 @@ def JINJA_CONFIG(): SOLITUDE_HOSTS = (os.environ.get('SOLITUDE_URL', 'http://localhost:2602'),) # The oAuth key and secret that solitude needs. -SOLITUDE_KEY = '' -SOLITUDE_SECRET = '' +SOLITUDE_KEY = 'marketplace' +SOLITUDE_SECRET = 'please change this' # The timeout we'll give solitude. SOLITUDE_TIMEOUT = 10