Merge pull request #39902 from mikedanese/bad-log

Automatic merge from submit-queue (batch tested with PRs 39947, 39936, 39902, 39859, 39915)

don't lie about starting the controllers in the controller manager

We print started even if it didn't start.
This commit is contained in:
Kubernetes Submit Queue 2017-01-16 09:26:16 -08:00 committed by GitHub
commit 639106540b

View File

@ -385,6 +385,7 @@ func StartControllers(controllers map[string]InitFunc, s *options.CMServer, root
}
if !started {
glog.Warningf("Skipping %q", controllerName)
continue
}
glog.Infof("Started %q", controllerName)
}