Skip to content

Commit

Permalink
TCP_CONNECTOR(ssl_context) deprecated. Change to ssl (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
slipovenko authored Apr 27, 2021
1 parent 52cd5c8 commit 2a7c7f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changes
-------
1.3.1 (2021-04-23)
^^^^^^^^^^^^^^^^^^
* TCPConnector: change deprecated ssl_context to ssl

1.3.0 (2021-04-09)
^^^^^^^^^^^^^^^^^^
* Bump to botocore 1.20.49 #856
Expand Down
2 changes: 1 addition & 1 deletion aiobotocore/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def create_endpoint(self, service_model, region_name, endpoint_url,
connector = aiohttp.TCPConnector(
limit=max_pool_connections,
verify_ssl=bool(verify),
ssl_context=ssl_context,
ssl=ssl_context,
**connector_args)

aio_session = http_session_cls(
Expand Down

0 comments on commit 2a7c7f5

Please sign in to comment.