From d18463f093b1097e393df6de067e0e00009d8994 Mon Sep 17 00:00:00 2001 From: Kropiunig <48442031+Kropiunig@users.noreply.github.com> Date: Mon, 6 Jul 2026 15:01:05 +0200 Subject: [PATCH] fix: correct log placeholder kwarg for untriggered pipeline breakpoint warning --- haystack/core/pipeline/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/core/pipeline/pipeline.py b/haystack/core/pipeline/pipeline.py index fe2e96df48b..2151bb9e838 100644 --- a/haystack/core/pipeline/pipeline.py +++ b/haystack/core/pipeline/pipeline.py @@ -448,7 +448,7 @@ def run( # noqa: PLR0915, PLR0912, C901 "The given breakpoint {break_point} was never triggered. This is because:\n" "1. The provided component is not a part of the pipeline execution path.\n" "2. The component did not reach the visit count specified in the pipeline_breakpoint", - pipeline_breakpoint=break_point, + break_point=break_point, ) return pipeline_outputs