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
Async credentials don't close aiohttp sessions. So a program like this:
aiohttp
cred = ClientSecretCredential(...) await cred.get_token('some scope')
Outputs this on exit:
[c:\python37\Lib\asyncio\base_events.py] Unclosed client session client_session: <aiohttp.client.ClientSession object at 0x0000016A8BDB6A58> [c:\python37\Lib\asyncio\base_events.py] Unclosed connector connections: ['[(<aiohttp.client_proto.ResponseHandler object at 0x0000016A8BF3A1C8>, 1617014.562)]'] connector: <aiohttp.connector.TCPConnector object at 0x0000016A8BDB6A90>
Related: #7228
The text was updated successfully, but these errors were encountered:
chlowell
Successfully merging a pull request may close this issue.
Async credentials don't close
aiohttp
sessions. So a program like this:Outputs this on exit:
Related: #7228
The text was updated successfully, but these errors were encountered: