fix(GRO-2652): promote boot ECONNRESET resilience to UAT (dev→uat) #223

Merged
Flea Flicker merged 18 commits from dev into uat 2026-08-05 10:22:03 +00:00
Showing only changes of commit f32e9a6889 - Show all commits
+6 -1
View File
@@ -329,5 +329,10 @@ export async function initAuth(): Promise<void> {
});
})();
await authInitPromise;
try {
await authInitPromise;
} catch (err) {
authInitPromise = null; // allow retry on next call
throw err;
}
}