Skip to content

Commit

Permalink
Fixed #47: Wrong import path for redis backend in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Dec 15, 2015
1 parent 42d437e commit a607315
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/backends.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ but you can override this with the ``HOSTS`` setting::

CHANNEL_BACKENDS = {
"default": {
"BACKEND": "channels.backends.redis.RedisChannelBackend",
"BACKEND": "channels.backends.redis_py.RedisChannelBackend",
"HOSTS": [("redis-channel-1", 6379), ("redis-channel-2", 6379)],
},
}
Expand Down
2 changes: 1 addition & 1 deletion docs/deploying.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ here's an example for a remote Redis server::

CHANNEL_BACKENDS = {
"default": {
"BACKEND": "channels.backends.redis.RedisChannelBackend",
"BACKEND": "channels.backends.redis_py.RedisChannelBackend",
"HOSTS": [("redis-channel", 6379)],
},
}
Expand Down

0 comments on commit a607315

Please sign in to comment.