Merge pull request #3024 from xiang90/fix_discovery

discovery: add timeouts for discovery client
release-2.1
Xiang Li 2015-06-24 13:44:21 -07:00
commit c221844d6b
1 changed files with 10 additions and 1 deletions

View File

@ -18,6 +18,7 @@ import (
"errors"
"fmt"
"math"
"net"
"net/http"
"net/url"
"path"
@ -120,7 +121,15 @@ func newDiscovery(durl, dproxyurl string, id types.ID) (*discovery, error) {
return nil, err
}
cfg := client.Config{
Transport: &http.Transport{Proxy: pf},
Transport: &http.Transport{
Proxy: pf,
Dial: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 10 * time.Second,
ResponseHeaderTimeout: 5 * time.Second,
},
Endpoints: []string{u.String()},
}
c, err := client.New(cfg)