From 0dd416c71fc97bbadfd621a4d957ace6b24ef61d Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Jul 2026 08:37:48 +0200 Subject: [PATCH] fix: allow latest-base worker startup --- scripts/harnessrl-native-l1-smoke.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/harnessrl-native-l1-smoke.mjs b/scripts/harnessrl-native-l1-smoke.mjs index d66c9f15..3e3504fe 100644 --- a/scripts/harnessrl-native-l1-smoke.mjs +++ b/scripts/harnessrl-native-l1-smoke.mjs @@ -207,7 +207,7 @@ async function startApi(env, baseUrl) { async function startWorker(env, port) { await startChild("worker", ["bun", "cmd/hwlab-harnessrl-worker/main.ts"], { cwd: root, env }); - await waitForHttp("wait-worker-ready", `http://127.0.0.1:${port}/readyz`, { timeoutMs: 20000 }); + await waitForHttp("wait-worker-ready", `http://127.0.0.1:${port}/readyz`, { timeoutMs: 30000 }); stage("worker-started", { pid: children.get("worker").pid }); }