fix: close idle connections
This commit is contained in:
parent
dd66f8826c
commit
1fc9e0be99
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ func (dc *dohClient) doRequest(req *http.Request) (msg *D.Msg, err error) {
|
||||||
} else {
|
} else {
|
||||||
if dc.firstTest.CAS(true, false) {
|
if dc.firstTest.CAS(true, false) {
|
||||||
dc.supportH3.Store(true)
|
dc.supportH3.Store(true)
|
||||||
_ = dc.transport.CloseIdleConnections
|
dc.transport.CloseIdleConnections()
|
||||||
dc.transport = nil
|
dc.transport = nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue