summaryrefslogtreecommitdiff
path: root/redis/client.py
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2015-11-02 10:53:21 -0800
committerAndy McCurdy <andy@andymccurdy.com>2015-11-02 10:53:21 -0800
commit4001afc9a993a23850f77961f33a4719f40e1f12 (patch)
treeb6a23127305b7d63be585ffa29898182dd66b9e2 /redis/client.py
parente1e6805815839909f79148d80faa45e72bc038e6 (diff)
downloadredis-py-4001afc9a993a23850f77961f33a4719f40e1f12.tar.gz
max_connections should default to None
Diffstat (limited to 'redis/client.py')
-rwxr-xr-xredis/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index 6c5eaa7..c40662f 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -401,7 +401,7 @@ class StrictRedis(object):
decode_responses=False, retry_on_timeout=False,
ssl=False, ssl_keyfile=None, ssl_certfile=None,
ssl_cert_reqs=None, ssl_ca_certs=None,
- max_connections=10000):
+ max_connections=None):
if not connection_pool:
if charset is not None:
warnings.warn(DeprecationWarning(