MCPcopy Index your code
hub / github.com/simstudioai/sim / cancelledBeforeRun

Function cancelledBeforeRun

apps/sim/background/workflow-column-execution.ts:196–202  ·  view source on GitHub ↗
(exec: RowExecutionMetadata | undefined)

Source from the content-addressed store, hash-verified

194 * queue (e.g. trigger.dev concurrency backlog) must not run once it
195 * dequeues. Reads the already-loaded row's exec — no extra query. */
196 const cancelledBeforeRun = (exec: RowExecutionMetadata | undefined): boolean => {
197 if (!isExecCancelled(exec)) return false
198 logger.info(
199 `Skipping cell — cancelled before execution (table=${tableId} row=${rowId} group=${groupId})`
200 )
201 return true
202 }
203
204 // Enrichment groups call a registry function directly instead of running a
205 // workflow, reusing the same pickup → run → terminal-write status flow. The

Callers 1

Calls 2

isExecCancelledFunction · 0.90
infoMethod · 0.80

Tested by

no test coverage detected