Skip to content

Commit

Permalink
Update use of old followPipe method in interpreter-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-schwarz committed Dec 20, 2023
1 parent 2421058 commit 33f095d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/interpreter-lib/src/interpreter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export function logPipelineOverview(
block.name
} (${blockTypeName})`;
const childString = pipelineWrapper
.followOutgoingPipes(block)
.getChildBlocks(block)
.map((child) => toString(child, depth + 1))
.join('\n');
return blockString + '\n' + childString;
Expand Down

0 comments on commit 33f095d

Please sign in to comment.