Update xtransport.go

downgrade test fix
This commit is contained in:
ACE 2025-01-25 17:42:26 +02:00 committed by GitHub
parent eb2c1dc6b3
commit 6c33547288
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -548,6 +548,10 @@ func (xTransport *XTransport) Fetch(
start := time.Now()
resp, err := client.Do(req)
rtt := time.Since(start)
statusCode := 503
if resp != nil {
statusCode = resp.StatusCode
}
if err == nil {
if resp == nil {
err = errors.New("Webserver returned an error")
@ -557,18 +561,12 @@ func (xTransport *XTransport) Fetch(
} else {
dlog.Debugf("HTTP client error: [%v] - closing idle connections", err)
xTransport.transport.CloseIdleConnections()
}
statusCode := 503
if resp != nil {
statusCode = resp.StatusCode
}
if err != nil {
dlog.Debugf("[%s]: [%s]", req.URL, err)
if xTransport.tlsCipherSuite != nil && strings.Contains(err.Error(), "handshake failure") {
dlog.Warnf(
"TLS handshake failure - Try changing or deleting the tls_cipher_suite value in the configuration file",
)
xTransport.tlsCipherSuite = nil
//xTransport.tlsCipherSuite = nil
xTransport.rebuildTransport()
}
return nil, statusCode, nil, rtt, err