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
In AsyncOAuth2Client, there's self._token_refresh_lock = Lock() introduced here.
The problem is, that for every new request, a new instance of AsyncOAuth2Client is created, therefore the lock doesn't make any difference for multiple requests.
In
AsyncOAuth2Client
, there'sself._token_refresh_lock = Lock()
introduced here.The problem is, that for every new request, a new instance of
AsyncOAuth2Client
is created, therefore the lock doesn't make any difference for multiple requests.Am I missing something?
The text was updated successfully, but these errors were encountered: