fix: tcp concurrent force close when context done

This commit is contained in:
gVisor bot 2022-06-25 09:16:28 +08:00
parent 3116efd498
commit f0b3c6a0c9

View File

@ -151,6 +151,7 @@ func (p *Proxy) URLTest(ctx context.Context, url string) (t uint16, err error) {
}
client := http.Client{
Timeout: 30 * time.Second,
Transport: transport,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
@ -168,13 +169,12 @@ func (p *Proxy) URLTest(ctx context.Context, url string) (t uint16, err error) {
_ = resp.Body.Close()
if unifiedDelay {
start = time.Now()
respRepeat, err := client.Do(req)
if err != nil {
return 0, err
second := time.Now()
resp, err = client.Do(req)
if err == nil {
_ = resp.Body.Close()
start = second
}
_ = respRepeat.Body.Close()
}
t = uint16(time.Since(start) / time.Millisecond)