From be65a89bd0f88eb2d1e0b0991783831dd6f4f43a Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 13 Mar 2026 09:58:01 -0700 Subject: [PATCH] ross/cln1 --- src/commands/benchmark-job/run.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/commands/benchmark-job/run.ts b/src/commands/benchmark-job/run.ts index 98badd7..a0e17f3 100644 --- a/src/commands/benchmark-job/run.ts +++ b/src/commands/benchmark-job/run.ts @@ -205,11 +205,8 @@ async function ensureAgentSecrets( // Resolve benchmark name to ID if needed async function resolveBenchmarkId(benchmarkIdOrName: string): Promise { - // If it looks like an ID (starts with bm_ or similar), return as-is - if ( - benchmarkIdOrName.startsWith("bm_") || - benchmarkIdOrName.startsWith("bmk_") - ) { + // If it looks like a benchmark ID, return as-is + if (benchmarkIdOrName.startsWith("bmd_")) { return benchmarkIdOrName; } @@ -346,7 +343,7 @@ export async function runBenchmarkJob(options: RunOptions) { console.log( `Benchmark job created: ${job.id} (agent timeout = ${agentConfigs[0].timeoutSeconds}s)`, ); - console.log(`Follow the run with rli benchmark-job watch ${job.id}`); + console.log(`Follow the run with "rli benchmark-job watch ${job.id}"`); } else { output(job, { format: options.output, defaultFormat: "json" }); }