Merge pull request #95 from dnephin/use-check-redirect

Use CheckRedirect so that client behaves the same way with GO 1.8
Upstream-commit: dee8e6ab2d
Component: cli
This commit is contained in:
Vincent Demeester
2017-05-17 10:13:42 +02:00
committed by GitHub

View File

@ -294,7 +294,8 @@ func newHTTPClient(host string, tlsOptions *tlsconfig.Options) (*http.Client, er
sockets.ConfigureTransport(tr, proto, addr)
return &http.Client{
Transport: tr,
Transport: tr,
CheckRedirect: client.CheckRedirect,
}, nil
}