From 035e73b6c3eb7da9986ad1665158304635efb254 Mon Sep 17 00:00:00 2001 From: Yang Guo Date: Mon, 20 Nov 2017 10:02:58 -0800 Subject: [PATCH] Suppress warning when a pod in binding cannot be expired --- plugin/pkg/scheduler/schedulercache/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pkg/scheduler/schedulercache/cache.go b/plugin/pkg/scheduler/schedulercache/cache.go index df7ac6601ab..7e409903331 100644 --- a/plugin/pkg/scheduler/schedulercache/cache.go +++ b/plugin/pkg/scheduler/schedulercache/cache.go @@ -439,7 +439,7 @@ func (cache *schedulerCache) cleanupAssumedPods(now time.Time) { panic("Key found in assumed set but not in podStates. Potentially a logical error.") } if !ps.bindingFinished { - glog.Warningf("Couldn't expire cache for pod %v/%v. Binding is still in progress.", + glog.V(3).Infof("Couldn't expire cache for pod %v/%v. Binding is still in progress.", ps.pod.Namespace, ps.pod.Name) continue }