fix(qa-lab): increase health check timeout to 240s

This commit is contained in:
Peter Steinberger
2026-04-06 19:33:05 +01:00
parent 7a736bff90
commit 37b7e22e13

View File

@@ -118,7 +118,7 @@ async function waitForHealth(
pollMs?: number;
},
) {
const timeoutMs = deps.timeoutMs ?? 120_000;
const timeoutMs = deps.timeoutMs ?? 240_000;
const pollMs = deps.pollMs ?? 1_000;
const deadline = Date.now() + timeoutMs;
let lastError: unknown = null;