fix: bound sentinel report evidence output

This commit is contained in:
Codex
2026-06-30 08:28:04 +00:00
parent 5e58a1d7e3
commit 88fa7db59f
7 changed files with 226 additions and 3 deletions
+2 -1
View File
@@ -71,7 +71,7 @@ export function parseNodeWebProbeSentinelOptions(args: string[]): NodeWebProbeSe
"--timeout-ms",
"--wait-timeout-ms",
"--command-timeout-seconds",
]), new Set(["--dry-run", "--confirm", "--wait", "--quick-verify", "--raw", "--latest", "--full-page", "--no-full-page"]));
]), new Set(["--dry-run", "--confirm", "--wait", "--quick-verify", "--raw", "--full", "--latest", "--full-page", "--no-full-page"]));
const node = requiredOption(args, "--node");
assertNodeId(node);
const lane = requiredOption(args, "--lane");
@@ -158,6 +158,7 @@ export function parseNodeWebProbeSentinelOptions(args: string[]): NodeWebProbeSe
traceId: optionValue(args, "--trace-id") ?? null,
sampleSeq,
raw: args.includes("--raw"),
full: args.includes("--full"),
timeoutSeconds,
};
}