More retries when resuming non-stale account (#4156)

zio/stable
Eric Bailey 2024-05-22 11:34:21 -05:00 committed by GitHub
parent 690926dd90
commit b937372325
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ export async function createAgentAndResume(
agent.session = prevSession
if (!storedAccount.deactivated) {
// Intentionally not awaited to unblock the UI:
networkRetry(1, () => agent.resumeSession(prevSession))
networkRetry(3, () => agent.resumeSession(prevSession))
}
}