From 95b1151d2ab665cb248bc3c949a8b9ef70375336 Mon Sep 17 00:00:00 2001 From: Saza Date: Tue, 1 Jul 2025 23:57:49 +0900 Subject: [PATCH] use format specifier Co-authored-by: Toru Komatsu --- test/integration/scheduler_perf/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/scheduler_perf/util.go b/test/integration/scheduler_perf/util.go index ad87e145f17..beec67b090a 100644 --- a/test/integration/scheduler_perf/util.go +++ b/test/integration/scheduler_perf/util.go @@ -648,7 +648,7 @@ func (tc *throughputCollector) collect() []DataItem { // tc.schedulingThroughputs can be empty if the scenario doesn't have // enough number of pods and nodes to take more than throughputSampleInterval (i.e. 1 second). if throughputSummary.Data == nil { - klog.Warningf("Failed to measure SchedulingThroughput for %s. The scenario needs to have enough pods and nodes to take more than 1 second.", tc.resultLabels["Name"]) + klog.Warningf("Failed to measure SchedulingThroughput for %s. The scenario needs to have enough pods and nodes to take more than %s.", tc.resultLabels["Name"], throughputSampleInterval,) } return []DataItem{throughputSummary}