Skip to content

Commit

Permalink
fixed port error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jpadilla1 committed Jul 23, 2014
1 parent 113c152 commit 099d5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatrooms/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class Common(Configuration):

WS4REDIS_HEARTBEAT = '--heartbeat--'
WS4REDIS_HOST = values.Value(environ_prefix=None, default='localhost')
WS4REDIS_PORT = values.Value(environ_prefix=None, default=6379)
WS4REDIS_PORT = values.IntegerValue(environ_prefix=None, default=6379)
WS4REDIS_CONNECTION = {
'host': WS4REDIS_HOST,
'port': WS4REDIS_PORT,
Expand Down

0 comments on commit 099d5b1

Please sign in to comment.