Merge pull request #76927 from mrkm4ntr/unnecessary-goroutine

Do not generate unnecessary goroutines
This commit is contained in:
Kubernetes Prow Robot
2019-05-06 21:31:53 -07:00
committed by GitHub
5 changed files with 5 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ func setupQuotaController(t *testing.T, kubeClient kubernetes.Interface, lister
t.Fatal(err)
}
stop := make(chan struct{})
go informerFactory.Start(stop)
informerFactory.Start(stop)
return quotaController{qc, stop}
}