chore: pin code queue mgr stats dry run

This commit is contained in:
Codex
2026-05-20 20:35:54 +00:00
parent 19933a6d15
commit e8b3c3ef32
4 changed files with 17 additions and 1 deletions
+12
View File
@@ -2037,6 +2037,18 @@ function dryRunArtifactConsumerPlan(options: ArtifactRegistryOptions, spec: Arti
deployEnvPrefix: target.compose.deployEnvPrefix,
deployCommandShape: `docker compose up -d --no-build --no-deps --force-recreate ${target.compose.serviceName}`,
},
excludedTargets: spec.serviceId === "code-queue-mgr"
? [
{
serviceId: "code-queue",
reason: "code-queue-mgr is the main-server control-plane sidecar only; scheduler/runner live in the separate Code Queue execution plane and are not part of this artifact consumer.",
},
{
services: ["code-queue-scheduler", "code-queue-runner"],
reason: "dry-run does not mutate D601 Code Queue scheduler, runner, tasks, interrupts, or cancellations.",
},
]
: undefined,
validation: [
"D601 registry /v2 manifest exists for the commit tag",
spec.kind === "d601-compose"