summaryrefslogtreecommitdiff
path: root/redis/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/connection.py')
-rwxr-xr-xredis/connection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/connection.py b/redis/connection.py
index ed051a3..728a627 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -906,8 +906,8 @@ class ConnectionPool(object):
Create a connection pool. If max_connections is set, then this
object raises redis.ConnectionError when the pool's limit is reached.
- By default, TCP connections are created connection_class is specified.
- Use redis.UnixDomainSocketConnection for unix sockets.
+ By default, TCP connections are created unless connection_class is
+ specified. Use redis.UnixDomainSocketConnection for unix sockets.
Any additional keyword arguments are passed to the constructor of
connection_class.