Skip to content

Commit f2887cc

Browse files
fix: correct log placeholder in pipeline breakpoint warning (#12017)
1 parent cc2d332 commit f2887cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

haystack/core/pipeline/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def run( # noqa: PLR0915, PLR0912, C901
514514
"The given breakpoint {break_point} was never triggered. This is because:\n"
515515
"1. The provided component is not a part of the pipeline execution path.\n"
516516
"2. The component did not reach the visit count specified in the pipeline_breakpoint",
517-
pipeline_breakpoint=break_point,
517+
break_point=break_point,
518518
)
519519

520520
return pipeline_outputs

0 commit comments

Comments
 (0)