From 340c4e2ef5c2fa2d4346cfc00b920d260f6bf7ee Mon Sep 17 00:00:00 2001 From: wangxiaofei67 Date: Thu, 26 Sep 2024 20:58:11 +0800 Subject: [PATCH] fix: add signoff Signed-off-by: wangxiaofei67 --- pkg/modeling/modeling.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modeling/modeling.go b/pkg/modeling/modeling.go index af4d27fb9fc4..a876668d3c77 100644 --- a/pkg/modeling/modeling.go +++ b/pkg/modeling/modeling.go @@ -163,7 +163,7 @@ func (rs *ResourceSummary) clusterResourceNodeComparator(a, b interface{}) int { func (rs *ResourceSummary) AddToResourceSummary(crn ClusterResourceNode) { index := rs.getIndex(crn) if index == -1 { - klog.Errorf("ClusterResource can not add to resource summary: index %d is invalid. the ClusterResourceNode is %v", index, crn) + klog.Errorf("ClusterResource can not add to resource summary: index %d is invalid. the ClusterResourceNode is %v.", index, crn) return } modeling := &(*rs).RMs[index]