Skip to content

Commit ecd8fac

Browse files
committed
chore: add warning for unified delay test when second failed
1 parent a330fa1 commit ecd8fac

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

adapter/adapter.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"net/netip"
1111
"net/url"
1212
"strconv"
13+
"strings"
1314
"time"
1415

1516
"github.com/metacubex/mihomo/common/atomic"
@@ -18,6 +19,7 @@ import (
1819
"github.com/metacubex/mihomo/component/ca"
1920
"github.com/metacubex/mihomo/component/dialer"
2021
C "github.com/metacubex/mihomo/constant"
22+
"github.com/metacubex/mihomo/log"
2123
"github.com/puzpuzpuz/xsync/v3"
2224
)
2325

@@ -260,10 +262,18 @@ func (p *Proxy) URLTest(ctx context.Context, url string, expectedStatus utils.In
260262

261263
if unifiedDelay {
262264
second := time.Now()
263-
resp, err = client.Do(req)
264-
if err == nil {
265+
var ignoredErr error
266+
var secondResp *http.Response
267+
secondResp, ignoredErr = client.Do(req)
268+
if ignoredErr == nil {
269+
resp = secondResp
265270
_ = resp.Body.Close()
266271
start = second
272+
} else {
273+
if strings.HasPrefix(url, "http://") {
274+
log.Errorln("%s failed to get the second response from %s: %v", p.Name(), url, ignoredErr)
275+
log.Warnln("It is recommended to use HTTPS for provider.health-check.url and group.url to ensure better reliability. Due to some proxy providers hijacking test addresses and not being compatible with repeated HEAD requests, using HTTP may result in failed tests.")
276+
}
267277
}
268278
}
269279

0 commit comments

Comments
 (0)