From db4df3db787d470430abd0a7666f1bcd95160300 Mon Sep 17 00:00:00 2001 From: UniDesk Codex Date: Mon, 6 Jul 2026 11:27:09 +0800 Subject: [PATCH] test: touch gateway code identity for env reuse --- cmd/hwlab-gateway/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/hwlab-gateway/main.ts b/cmd/hwlab-gateway/main.ts index 2433dcae..b60f6ab2 100644 --- a/cmd/hwlab-gateway/main.ts +++ b/cmd/hwlab-gateway/main.ts @@ -15,7 +15,7 @@ const pollIntervalMs = parsePositiveInteger(process.env.HWLAB_GATEWAY_POLL_INTER const commandTimeoutMs = parsePositiveInteger(process.env.HWLAB_GATEWAY_CMD_TIMEOUT_MS, 120000); const outputLimitBytes = parsePositiveInteger(process.env.HWLAB_GATEWAY_CMD_OUTPUT_LIMIT_BYTES, 65536); const maxInflightRequests = parsePositiveInteger(process.env.HWLAB_GATEWAY_MAX_INFLIGHT, 3); -// CI probe: touches only the hwlab-gateway code identity for env reuse validation. +// CI probe: touches only the hwlab-gateway code identity for env reuse validation round 2. const gatewayEnvironment = normalizeEnvironment(process.env.HWLAB_ENVIRONMENT || process.env.HWLAB_GITOPS_PROFILE || ENVIRONMENT_DEV); const resourceId = process.env.HWLAB_GATEWAY_RESOURCE_ID ?? "res_windows_host"; const boxId = process.env.HWLAB_GATEWAY_BOX_ID ?? "box_windows_host";