You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only way I've been able to avoid these is to explicitly call await pubsub_session.close() or by calling await pubsub_client.session.session.close().
The text was updated successfully, but these errors were encountered:
I assume this is intentional, since the aiohttp.ClientSession might be used by other clients, so a single client should not close the session. In general I'd assume that if you create the session, then you are also responsible for closing the session.
The
aiohttp.ClientSession
is not closed properly afterclose()
is called on a client.e.g.
The only way I've been able to avoid these is to explicitly call
await pubsub_session.close()
or by callingawait pubsub_client.session.session.close()
.The text was updated successfully, but these errors were encountered: