Merge pull request #32461 from smarterclayton/endpoints_loggy

Automatic merge from submit-queue

Endpoints controller is logspamming
pull/6/head
Kubernetes Submit Queue 2016-09-12 05:20:25 -07:00 committed by GitHub
commit a29ab082d5
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ func (e *EndpointController) syncService(key string) {
if !e.podStoreSynced() {
// Sleep so we give the pod reflector goroutine a chance to run.
time.Sleep(PodStoreSyncedPollPeriod)
glog.Infof("Waiting for pods controller to sync, requeuing service %v", key)
glog.V(4).Infof("Waiting for pods controller to sync, requeuing service %v", key)
e.queue.Add(key)
return
}