test(e2e): give plugin runtime RPCs more headroom

This commit is contained in:
Vincent Koc
2026-05-01 01:06:34 -07:00
parent bcaf980015
commit 1b1b1b41a3

View File

@@ -11,7 +11,7 @@ const READY_TIMEOUT_MS = readPositiveInt(
process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_READY_MS,
180000,
);
const RPC_TIMEOUT_MS = readPositiveInt(process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_RPC_MS, 30000);
const RPC_TIMEOUT_MS = readPositiveInt(process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_RPC_MS, 60000);
function readPositiveInt(raw, fallback) {
const parsed = Number.parseInt(String(raw || ""), 10);