File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
apps/sim/executor/handlers/workflow Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1+ import { randomUUID } from 'node:crypto'
12import { createLogger } from '@sim/logger'
23import { buildNextCallChain , validateCallChain } from '@/lib/execution/call-chain'
34import { snapshotService } from '@/lib/logs/execution/snapshot/service'
@@ -81,7 +82,7 @@ export class WorkflowBlockHandler implements BlockHandler {
8182
8283 // Unique ID per invocation — used to correlate child block events with this specific
8384 // workflow block execution, preventing cross-iteration child mixing in loop contexts.
84- const instanceId = crypto . randomUUID ( )
85+ const instanceId = randomUUID ( )
8586
8687 const childCallChain = buildNextCallChain ( ctx . callChain || [ ] , workflowId )
8788 const depthError = validateCallChain ( childCallChain )
You can’t perform that action at this time.
0 commit comments