From dfb160db6d7b797127531063672fa27aaebe0256 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 5 May 2026 18:54:50 -0700 Subject: [PATCH] test(docker): widen live profile lane timeout --- scripts/lib/docker-e2e-scenarios.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/docker-e2e-scenarios.mjs b/scripts/lib/docker-e2e-scenarios.mjs index b7e1caa74ad..c9bf66c45e2 100644 --- a/scripts/lib/docker-e2e-scenarios.mjs +++ b/scripts/lib/docker-e2e-scenarios.mjs @@ -5,7 +5,7 @@ export const DEFAULT_LIVE_RETRIES = 1; const LIVE_ACP_TIMEOUT_MS = 20 * 60 * 1000; const LIVE_CLI_TIMEOUT_MS = 20 * 60 * 1000; -const LIVE_PROFILE_TIMEOUT_MS = 20 * 60 * 1000; +const LIVE_PROFILE_TIMEOUT_MS = 30 * 60 * 1000; const OPENWEBUI_TIMEOUT_MS = 20 * 60 * 1000; export const BUNDLED_PLUGIN_INSTALL_UNINSTALL_SHARDS = 24; const upgradeSurvivorCommand = "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:upgrade-survivor";