Skip to content

Commit

Permalink
settings fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Boltnev committed Oct 23, 2020
1 parent 0ecb7e6 commit 7e6d4ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion redis_sessions/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.2'
__version__ = '0.6.3'
2 changes: 1 addition & 1 deletion redis_sessions/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# SESSION_REDIS - Default
SESSION_REDIS = getattr(settings, 'SESSION_REDIS', {})
SESSION_REDIS_CONNECTION_OBJECT = SESSION_REDIS.get('redis_connection_object', None)
SESSION_REDIS_CONNECTION_OBJECT = getattr(settings, 'SESSION_REDIS_CONNECTION_OBJECT', None)
SESSION_REDIS_HOST = SESSION_REDIS.get('host', 'localhost')
SESSION_REDIS_PORT = SESSION_REDIS.get('port', 6379)
SESSION_REDIS_SOCKET_TIMEOUT = SESSION_REDIS.get('socket_timeout', 0.1)
Expand Down

0 comments on commit 7e6d4ad

Please sign in to comment.