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

This commit is contained in:
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

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))
}
}