Merge pull request #77313 from bjhaid/cleanup_kube_proxy

Clean up kube-proxy.
This commit is contained in:
Kubernetes Prow Robot
2019-05-10 21:30:12 -07:00
committed by GitHub
4 changed files with 3 additions and 17 deletions

View File

@@ -329,11 +329,9 @@ func (o *Options) runLoop() error {
}()
for {
select {
case err := <-o.errCh:
if err != nil {
return err
}
err := <-o.errCh
if err != nil {
return err
}
}
}