More retries when resuming non-stale account (#4156)
parent
690926dd90
commit
b937372325
|
@ -53,7 +53,7 @@ export async function createAgentAndResume(
|
||||||
agent.session = prevSession
|
agent.session = prevSession
|
||||||
if (!storedAccount.deactivated) {
|
if (!storedAccount.deactivated) {
|
||||||
// Intentionally not awaited to unblock the UI:
|
// Intentionally not awaited to unblock the UI:
|
||||||
networkRetry(1, () => agent.resumeSession(prevSession))
|
networkRetry(3, () => agent.resumeSession(prevSession))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue