From 0a2dd2eeda0ed28affa5e2546ff3744a76f0b766 Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Thu, 10 Aug 2023 13:59:01 +0200 Subject: [PATCH] Remove deprecated strict parameter from PoolManager Resolve warning raised by urllib3: > DeprecationWarning: The 'strict' parameter is no longer needed on Python 3+. > This will raise an error in urllib3 v2.1.0. --- arango/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/arango/http.py b/arango/http.py index dbd0a555..b05182d4 100644 --- a/arango/http.py +++ b/arango/http.py @@ -117,7 +117,6 @@ def init_poolmanager( dict( num_pools=connections, maxsize=maxsize, - strict=True, timeout=self._connection_timeout, ) )