Merge pull request #16451 from hashicorp/jbardin/disco

add Transport field to Disco
This commit is contained in:
James Bardin 2017-10-25 12:04:07 -04:00 committed by GitHub
commit f9ad58c66a
1 changed files with 11 additions and 1 deletions

View File

@ -39,6 +39,10 @@ var httpTransport = cleanhttp.DefaultPooledTransport() // overridden during test
type Disco struct {
hostCache map[svchost.Hostname]Host
credsSrc auth.CredentialsSource
// Transport is a custom http.Transport to use.
// A package default is used if this is nil.
Transport *http.Transport
}
func NewDisco() *Disco {
@ -92,8 +96,14 @@ func (d *Disco) discover(host svchost.Hostname) Host {
Host: string(host),
Path: discoPath,
}
t := d.Transport
if t == nil {
t = httpTransport
}
client := &http.Client{
Transport: httpTransport,
Transport: t,
Timeout: discoTimeout,
CheckRedirect: func(req *http.Request, via []*http.Request) error {