Skip to content

Commit

Permalink
changed flag for ssl checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Rutger Cappendijk committed Nov 17, 2023
1 parent 49a6282 commit ada9d92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
# We currently only support up to python 3.11
# because aiohttp does not support 3.12 as of yet.
# And 3.7 because Google Colab uses 3.7 by default.
# 3.7 because Google Colab uses 3.7 by default.
python-version: [3.7, 3.11]

steps:
Expand Down
2 changes: 1 addition & 1 deletion aleph_alpha_client/aleph_alpha_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def __init__(
start_timeout=0.25,
statuses=set(RETRY_STATUS_CODES),
)
connector = aiohttp.TCPConnector(ssl=verify_ssl)
connector = aiohttp.TCPConnector(verify_ssl=verify_ssl)
self.session = RetryClient(
trust_env=True, # same behaviour as requests/(Sync)Client wrt. http_proxy
raise_for_status=False,
Expand Down

0 comments on commit ada9d92

Please sign in to comment.