Skip to content

Commit

Permalink
Remove deprecated strict poolmanager kwarg (#3036)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Oct 10, 2023
1 parent 9513529 commit f0ff061
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion botocore/httpsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ def _proxies_kwargs(self, **kwargs):

def _get_pool_manager_kwargs(self, **extra_kwargs):
pool_manager_kwargs = {
'strict': True,
'timeout': self._timeout,
'maxsize': self._max_pool_connections,
'ssl_context': self._get_ssl_context(),
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_http_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ def assert_request_sent(

def _assert_manager_call(self, manager, *assert_args, **assert_kwargs):
call_kwargs = {
'strict': True,
'maxsize': mock.ANY,
'timeout': mock.ANY,
'ssl_context': mock.ANY,
Expand Down

0 comments on commit f0ff061

Please sign in to comment.