1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Merge pull request #517 from lixiang233/fix_topology_log

Correct log in topology spread strategy
This commit is contained in:
Kubernetes Prow Robot
2021-03-07 11:31:42 -08:00
committed by GitHub

View File

@@ -78,7 +78,7 @@ func RemovePodsViolatingTopologySpreadConstraint(
) { ) {
thresholdPriority, includedNamespaces, excludedNamespaces, err := validateAndParseTopologySpreadParams(ctx, client, strategy.Params) thresholdPriority, includedNamespaces, excludedNamespaces, err := validateAndParseTopologySpreadParams(ctx, client, strategy.Params)
if err != nil { if err != nil {
klog.ErrorS(err, "Invalid PodLifeTime parameters") klog.ErrorS(err, "Invalid RemovePodsViolatingTopologySpreadConstraint parameters")
return return
} }