Merge pull request #32107 from xingzhou/km_bug

Automatic merge from submit-queue

Used goroutine to launch node controller's internalPodInformer.

Fixes #32103
This commit is contained in:
Kubernetes Submit Queue
2016-09-06 11:50:28 -07:00
committed by GitHub

View File

@@ -390,7 +390,7 @@ func (nc *NodeController) Run() {
go nc.podController.Run(wait.NeverStop)
go nc.daemonSetController.Run(wait.NeverStop)
if nc.internalPodInformer != nil {
nc.internalPodInformer.Run(wait.NeverStop)
go nc.internalPodInformer.Run(wait.NeverStop)
}
// Incorporate the results of node status pushed from kubelet to master.