Skip to content

Commit 89f5fdd

Browse files
committed
remove comments
1 parent ecc61ba commit 89f5fdd

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

apps/sim/executor/handlers/workflow/workflow-handler.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ describe('WorkflowBlockHandler', () => {
5050
// Reset all mocks
5151
vi.clearAllMocks()
5252

53-
// No cycle detection state to clear
54-
5553
// Setup default fetch mock
5654
mockFetch.mockResolvedValue({
5755
ok: true,
@@ -100,8 +98,6 @@ describe('WorkflowBlockHandler', () => {
10098
)
10199
})
102100

103-
// Cycle detection removed; relying on depth/timeout
104-
105101
it('should enforce maximum depth limit', async () => {
106102
const inputs = { workflowId: 'child-workflow-id' }
107103

apps/sim/executor/handlers/workflow/workflow-handler.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ export class WorkflowBlockHandler implements BlockHandler {
9292
const result = await subExecutor.execute(workflowId)
9393
const duration = performance.now() - startTime
9494

95-
// No-op: execution id used only for logging
96-
9795
logger.info(`Child workflow ${childWorkflowName} completed in ${Math.round(duration)}ms`)
9896

9997
const childTraceSpans = this.captureChildWorkflowLogs(result, childWorkflowName, context)

0 commit comments

Comments
 (0)