We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c463ac commit a0822dcCopy full SHA for a0822dc
apps/sim/executor/execution/block-executor.ts
@@ -80,7 +80,10 @@ export class BlockExecutor {
80
const startTime = performance.now()
81
let resolvedInputs: Record<string, any> = {}
82
83
- const nodeMetadata = { ...this.buildNodeMetadata(node), executionOrder: blockLog?.executionOrder }
+ const nodeMetadata = {
84
+ ...this.buildNodeMetadata(node),
85
+ executionOrder: blockLog?.executionOrder,
86
+ }
87
let cleanupSelfReference: (() => void) | undefined
88
89
if (block.metadata?.id === BlockType.HUMAN_IN_THE_LOOP) {
0 commit comments