Skip to content

Commit 4e8102b

Browse files
committed
Remove deprecated strict poolmanager kwarg
1 parent bad8e10 commit 4e8102b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

awscli/botocore/httpsession.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ def _proxies_kwargs(self, **kwargs):
339339

340340
def _get_pool_manager_kwargs(self, **extra_kwargs):
341341
pool_manager_kwargs = {
342-
'strict': True,
343342
'timeout': self._timeout,
344343
'maxsize': self._max_pool_connections,
345344
'ssl_context': self._get_ssl_context(),

tests/unit/botocore/test_http_session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ def assert_request_sent(
150150

151151
def _assert_manager_call(self, manager, *assert_args, **assert_kwargs):
152152
call_kwargs = {
153-
'strict': True,
154153
'maxsize': mock.ANY,
155154
'timeout': mock.ANY,
156155
'ssl_context': mock.ANY,

0 commit comments

Comments
 (0)