0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-14 09:38:34 +00:00

fix(go.d/pkg/web): correct close idle connections ()

This commit is contained in:
Ilya Mashchenko 2024-11-21 01:21:31 +02:00 committed by GitHub
parent 29ac159500
commit febdb5e312
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,7 +125,7 @@ func (t *http2Transport) RoundTrip(req *http.Request) (resp *http.Response, err
return t.t2c.RoundTrip(req)
}
func (t *http2Transport) CloseIdleConnection() {
func (t *http2Transport) CloseIdleConnections() {
t.t2.CloseIdleConnections()
t.t2c.CloseIdleConnections()
}