From bf561fb8569c1fd85f1642d742d06849007c6e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Mon, 17 Oct 2016 17:25:50 +0200 Subject: [PATCH] Fix maxsize parameter description. Fixes #414 Thanks theanti9! --- elasticsearch/connection/http_urllib3.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/elasticsearch/connection/http_urllib3.py b/elasticsearch/connection/http_urllib3.py index 868bab02..0f836e23 100644 --- a/elasticsearch/connection/http_urllib3.py +++ b/elasticsearch/connection/http_urllib3.py @@ -39,8 +39,9 @@ class Urllib3HttpConnection(Connection): ``ssl`` module for exact options for your environment). :arg ssl_assert_hostname: use hostname verification if not `False` :arg ssl_assert_fingerprint: verify the supplied certificate fingerprint if not `None` - :arg maxsize: the maximum number of connections which will be kept open to - this host. + :arg maxsize: the number of connections which will be kept open to this + host. See https://urllib3.readthedocs.io/en/1.4/pools.html#api for more + information. :arg headers: any custom http headers to be add to requests """ def __init__(self, host='localhost', port=9200, http_auth=None,