Commit 9dfe8df7 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #32107 from xingzhou/km_bug

Automatic merge from submit-queue Used goroutine to launch node controller's internalPodInformer. Fixes #32103
parents e7e95877 46c302b4
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment