From fe88a5662e2e5ffc51ab1153491ab94e0d76ef55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Tue, 18 Nov 2025 17:33:54 +0100 Subject: [PATCH] Fix log message --- client/jobexec/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/jobexec/executor.go b/client/jobexec/executor.go index ab5dfe69c..8dc11422c 100644 --- a/client/jobexec/executor.go +++ b/client/jobexec/executor.go @@ -29,7 +29,7 @@ func NewExecutor() *Executor { func (e *Executor) BundleJob(ctx context.Context, debugBundleDependencies debug.GeneratorDependencies, params debug.BundleConfig, waitForDuration time.Duration, mgmURL string) (string, error) { if waitForDuration > MaxBundleWaitTime { - log.Warnf("bundle wait time %v exceeds maximum %v, capping to maximum", waitFor, MaxBundleWaitTime) + log.Warnf("bundle wait time %v exceeds maximum %v, capping to maximum", waitForDuration, MaxBundleWaitTime) waitForDuration = MaxBundleWaitTime }