feat: GRO-2652 boot ECONNRESET resilience + CORS enforcement + OOBE endpoint (uat→main) #226

Merged
Flea Flicker merged 47 commits from uat into main 2026-08-05 11:57:24 +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;
}
}