We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since introducing nest-asyncio in #42 the aiohttp session close finaliser isn't working.
nest-asyncio
aiohttp
This should close the session.
kr8s/kr8s/_api.py
Line 77 in 075fdc5
But it isn't working.
Unclosed client session client_session: <aiohttp.client.ClientSession object at 0x7fedfd56afb0> Unclosed connector connections: ['[(<aiohttp.client_proto.ResponseHandler object at 0x7fedfd5cdd80>, 1258910.377873378)]'] connector: <aiohttp.connector.TCPConnector object at 0x7fedfd5bd720>
Looks like this is an incompatibility between how nest-asyncio and asyncio-atexit are patching asyncio, see minrk/asyncio-atexit#3.
asyncio-atexit
asyncio
The text was updated successfully, but these errors were encountered:
Removed nest-asyncio in #44 for now which resolves this. But may need to revisit this to close #41.
Sorry, something went wrong.
No branches or pull requests
Since introducing
nest-asyncio
in #42 theaiohttp
session close finaliser isn't working.This should close the session.
kr8s/kr8s/_api.py
Line 77 in 075fdc5
But it isn't working.
Looks like this is an incompatibility between how
nest-asyncio
andasyncio-atexit
are patchingasyncio
, see minrk/asyncio-atexit#3.The text was updated successfully, but these errors were encountered: