mirror of
https://github.com/kubernetes/client-go.git
synced 2025-06-26 23:17:34 +00:00
Merge pull request #111242 from wojtek-t/fix_leaking_goroutines_11
Fix leaking goroutines in multiple integration tests Kubernetes-commit: 0cde1b744652306e921116883e2465a005b79811
This commit is contained in:
commit
4db4856058
@ -36,6 +36,11 @@ type tlsTransportCache struct {
|
|||||||
transports map[tlsCacheKey]*http.Transport
|
transports map[tlsCacheKey]*http.Transport
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DialerStopCh is stop channel that is passed down to dynamic cert dialer.
|
||||||
|
// It's exposed as variable for testing purposes to avoid testing for goroutine
|
||||||
|
// leakages.
|
||||||
|
var DialerStopCh = wait.NeverStop
|
||||||
|
|
||||||
const idleConnsPerHost = 25
|
const idleConnsPerHost = 25
|
||||||
|
|
||||||
var tlsCache = &tlsTransportCache{transports: make(map[tlsCacheKey]*http.Transport)}
|
var tlsCache = &tlsTransportCache{transports: make(map[tlsCacheKey]*http.Transport)}
|
||||||
@ -101,7 +106,7 @@ func (c *tlsTransportCache) get(config *Config) (http.RoundTripper, error) {
|
|||||||
dynamicCertDialer := certRotatingDialer(tlsConfig.GetClientCertificate, dial)
|
dynamicCertDialer := certRotatingDialer(tlsConfig.GetClientCertificate, dial)
|
||||||
tlsConfig.GetClientCertificate = dynamicCertDialer.GetClientCertificate
|
tlsConfig.GetClientCertificate = dynamicCertDialer.GetClientCertificate
|
||||||
dial = dynamicCertDialer.connDialer.DialContext
|
dial = dynamicCertDialer.connDialer.DialContext
|
||||||
go dynamicCertDialer.Run(wait.NeverStop)
|
go dynamicCertDialer.Run(DialerStopCh)
|
||||||
}
|
}
|
||||||
|
|
||||||
proxy := http.ProxyFromEnvironment
|
proxy := http.ProxyFromEnvironment
|
||||||
|
Loading…
Reference in New Issue
Block a user