mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-09 08:55:55 -04:00
Merge pull request #91450 from gaurav1086/kube_proxy_test_fix_goroutine_leak
kube-proxy-test: fix goroutine leak
This commit is contained in:
commit
9c35c491f0
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ udpIdleTimeout: 250ms`)
|
|||
}
|
||||
opt.proxyServer = tc.proxyServer
|
||||
|
||||
errCh := make(chan error)
|
||||
errCh := make(chan error, 1)
|
||||
go func() {
|
||||
errCh <- opt.runLoop()
|
||||
}()
|
||||
|
|
|
|||
Loading…
Reference in a new issue