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 ExecutionManager fetches the needed credentials for a graph excution from Supabase, but it should also refresh them if needed using the appropriate OAuthHandler.
The text was updated successfully, but these errors were encountered:
When a refresh token is used, the corresponding access token becomes invalid. So if one part of the system refreshes the token, this needs to be propagated to all other parts of the system.
Tokens refresh can (in principle) be initiated by both the executor and the rest_api server.
The only way I see to properly deal with this is to have centralized credentials management, and JIT retrieval of credentials for use.
The
ExecutionManager
fetches the needed credentials for a graph excution from Supabase, but it should also refresh them if needed using the appropriateOAuthHandler
.The text was updated successfully, but these errors were encountered: