Fix crash in consul backend

A TLS config was being assigned to a Transport in a nil http.Client. The
Transport is built in the consul config by default, but the http.Client
is not built until later in NewClient.
This commit is contained in:
James Bardin 2017-08-31 09:29:43 -04:00
parent adb6a089ff
commit 76eb65c911
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package consul
import (
"context"
"net/http"
"strings"
consulapi "github.com/hashicorp/consul/api"
@ -149,7 +148,7 @@ func (b *Backend) clientRaw() (*consulapi.Client, error) {
if err != nil {
return nil, err
}
config.HttpClient.Transport.(*http.Transport).TLSClientConfig = cc
config.Transport.TLSClientConfig = cc
if v, ok := data.GetOk("http_auth"); ok && v.(string) != "" {
auth := v.(string)