Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Merge pull request #2760 from andymckay/1106198
Browse files Browse the repository at this point in the history
setup default oauth between zamboni and solitude (bug 1106198)
  • Loading branch information
Andy McKay committed Dec 12, 2014
2 parents 9d5f833 + f4eec95 commit e92ab7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mkt/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,14 +1098,14 @@ 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

# The OAuth keys to connect to the solitude host specified above.
SOLITUDE_OAUTH = {'key': '', 'secret': ''}
SOLITUDE_OAUTH = {'key': SOLITUDE_KEY, 'secret': SOLITUDE_SECRET}

# Full path or executable path (relative to $PATH) of the spidermonkey js
# binary. It must be a version compatible with amo-validator
Expand Down

0 comments on commit e92ab7d

Please sign in to comment.