Closed
Description
What version of Go are you using (go version
)?
$ go version go version go1.15.7 linux/amd64
Does this issue reproduce with the latest release?
I have tested this with Go 1.13+.
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/moein/.cache/go-build" GOENV="/home/moein/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/moein/go/pkg/mod" GONOPROXY="=" GONOSUMDB="=" GOOS="linux" GOPATH="/home/moein/go" GOPRIVATE="=" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/lib64/go/1.15" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/lib64/go/1.15/pkg/tool/linux_amd64" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build173751188=/tmp/go-build -gno-record-gcc-switches" GOROOT/bin/go version: go version go1.15.7 linux/amd64 GOROOT/bin/go tool compile -V: compile version go1.15.7 uname -sr: Linux 5.10.12-1-default LSB Version: n/a Distributor ID: openSUSE Description: openSUSE Tumbleweed Release: 20210210 Codename: n/a /lib64/libc.so.6: GNU C Library (GNU libc) release release version 2.32 (git 0a8262a1b2).
What did you do?
I have a http.Client like this:
client := &http.Client{
Timeout: 20 * time.Second,
Transport: &http.Transport{
TLSHandshakeTimeout: 10 * time.Second,
},
}
And I send a HTTP request with:
res, err := client.Get(url)
What did you expect to see?
It should return a 2xx response without any error.
What did you see instead?
I get net/http: TLS handshake timeout
.
Same URL works perfectly with curl
.
I have also tried with InsecureSkipVerify: true
but it didn't change anything.