Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[httpx] use timeouts and remove footgun #11770

Conversation

danking
Copy link
Contributor

@danking danking commented Apr 15, 2022

httpx.ClientSession did not include the logic to set up the timeout. I do
not recall why I had a factory function distinct from the class itself. That
was a mistake. I leave the factory function because it is used prevasively.
However, now, allocating the class itself is also OK.

`httpx.ClientSession` did not include the logic to set up the timeout. I do
not recall why I had a factory function distinct from the class itself. That
was a mistake. I leave the factory function because it is used prevasively.
However, now, allocating the class itself is also OK.
tls = external_client_ssl_context()

assert 'connector' not in kwargs
kwargs['connector'] = aiohttp.TCPConnector(ssl=tls)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: a little awkward here putting connector back in kwargs but not timeout. Can we leave kwargs as it is and pass connector explicitly to ClientSession?

@danking danking merged commit 921ab3f into hail-is:main Apr 20, 2022
CDiaz96 pushed a commit to CDiaz96/hail that referenced this pull request Apr 27, 2022
* [httpx] use timeouts and remove footgun

`httpx.ClientSession` did not include the logic to set up the timeout. I do
not recall why I had a factory function distinct from the class itself. That
was a mistake. I leave the factory function because it is used prevasively.
However, now, allocating the class itself is also OK.

* Update httpx.py

* fix type

* syntax error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants