Skip to content

Commit

Permalink
Remove deprecated strict parameter from PoolManager (#269)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
153957 authored Aug 10, 2023
1 parent b472775 commit fc5ed39
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion arango/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def init_poolmanager(
dict(
num_pools=connections,
maxsize=maxsize,
strict=True,
timeout=self._connection_timeout,
)
)
Expand Down

0 comments on commit fc5ed39

Please sign in to comment.