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
Currently, every GraphQL request in github_info.py uses gql.execute_async, which creates a new aiohttp session (and connector) every time.
To avoid this and to support sharing the same TCPConnector as bot.http_session for connection pooling, the gql client should use a persistent session.
The text was updated successfully, but these errors were encountered:
Currently, every GraphQL request in
github_info.py
usesgql.execute_async
, which creates a new aiohttp session (and connector) every time.To avoid this and to support sharing the same
TCPConnector
asbot.http_session
for connection pooling, the gql client should use a persistent session.The text was updated successfully, but these errors were encountered: