Change the default redis host to localhost. Fix some whitespace issues in the userevents module.

This commit is contained in:
Jake Moshenko 2014-10-14 14:37:02 -04:00
parent 44637dad96
commit fa6a06502d
2 changed files with 6 additions and 6 deletions

View file

@ -80,11 +80,11 @@ class DefaultConfig(object):
AUTHENTICATION_TYPE = 'Database'
# Build logs
BUILDLOGS_REDIS = {'host': 'logs.quay.io'}
BUILDLOGS_REDIS = {'host': 'localhost'}
BUILDLOGS_OPTIONS = []
# Real-time user events
USER_EVENTS_REDIS = {'host': 'logs.quay.io'}
USER_EVENTS_REDIS = {'host': 'localhost'}
# Stripe config
BILLING_TYPE = 'FakeStripe'