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
fix: retry auth token delivery to chat iframe with backoff
When the chat iframe sends coder:vscode-ready, the session token
may not be available yet if deployment setup is still in progress
after a reload. Previously, handleMessage silently returned, leaving
the iframe stuck on 'Authenticating...' forever with no recovery.
Now sendAuthToken retries up to 5 times with exponential backoff
(500ms, 1s, 2s, 4s, 8s). If the token is still unavailable after
all retries, a coder:auth-error message is sent to the webview,
which shows the error and a Retry button so the user can try again
after signing in.
0 commit comments