1
0
mirror of https://github.com/go-acme/lego.git synced 2025-07-04 22:48:48 +02:00

refactor: replace Dial by DialContext. (#585)

This commit is contained in:
Ludovic Fernandez
2018-07-01 00:55:57 +02:00
committed by GitHub
parent 54422ab226
commit 94e14328ab

View File

@ -26,10 +26,10 @@ var (
HTTPClient = http.Client{ HTTPClient = http.Client{
Transport: &http.Transport{ Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment, Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{ DialContext: (&net.Dialer{
Timeout: 30 * time.Second, Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second, KeepAlive: 30 * time.Second,
}).Dial, }).DialContext,
TLSHandshakeTimeout: 15 * time.Second, TLSHandshakeTimeout: 15 * time.Second,
ResponseHeaderTimeout: 15 * time.Second, ResponseHeaderTimeout: 15 * time.Second,
ExpectContinueTimeout: 1 * time.Second, ExpectContinueTimeout: 1 * time.Second,