From cd4d09726c1da9a24201d8adbc356848df8e626b Mon Sep 17 00:00:00 2001 From: Dane De Forest Date: Wed, 28 Aug 2019 10:54:39 -0700 Subject: [PATCH] Fix small typo in output for thresholds for low utilization --- pkg/descheduler/strategies/lownodeutilization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/descheduler/strategies/lownodeutilization.go b/pkg/descheduler/strategies/lownodeutilization.go index 79229ff88..1c27c0db2 100644 --- a/pkg/descheduler/strategies/lownodeutilization.go +++ b/pkg/descheduler/strategies/lownodeutilization.go @@ -67,7 +67,7 @@ func LowNodeUtilization(ds *options.DeschedulerServer, strategy api.DeschedulerS thresholds[v1.ResourceCPU], thresholds[v1.ResourceMemory], thresholds[v1.ResourcePods]) if len(lowNodes) == 0 { - glog.V(1).Infof("No node is underutilized, nothing to do here, you might tune your thersholds further") + glog.V(1).Infof("No node is underutilized, nothing to do here, you might tune your thresholds further") return } glog.V(1).Infof("Total number of underutilized nodes: %v", len(lowNodes))