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 Jan 12, 2024
1 parent 0b71a9d commit 32c87d9
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 @@ -255,7 +255,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 32c87d9

Please sign in to comment.