MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / markUnstartedRowsSkipped

Function markUnstartedRowsSkipped

packages/cli/src/commands/batchRender.ts:373–380  ·  view source on GitHub ↗
(manifest: BatchManifest)

Source from the content-addressed store, hash-verified

371}
372
373function markUnstartedRowsSkipped(manifest: BatchManifest): void {
374 for (const row of manifest.rows) {
375 if (row.status !== "pending") continue;
376 row.status = "skipped";
377 row.error = "Skipped after --batch-fail-fast.";
378 row.completedAt = new Date().toISOString();
379 }
380}
381
382export async function runBatchRender(options: RunBatchRenderOptions): Promise<BatchManifest> {
383 if (options.concurrency < 1) {

Callers 1

runBatchRenderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected