From e7130e9c85e739d7a3e9295f7ef76b3a9aef9190 Mon Sep 17 00:00:00 2001 From: Colin Moller Date: Wed, 3 Jun 2015 17:23:45 -0700 Subject: [PATCH] go fmt --- state/remote/http.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/state/remote/http.go b/state/remote/http.go index a5233c04aa..121cb8c89e 100644 --- a/state/remote/http.go +++ b/state/remote/http.go @@ -3,12 +3,12 @@ package remote import ( "bytes" "crypto/md5" + "crypto/tls" "encoding/base64" "fmt" "io" "net/http" "net/url" - "crypto/tls" "strconv" ) @@ -40,14 +40,14 @@ func httpFactory(conf map[string]string) (Client, error) { } return &HTTPClient{ - URL: url, + URL: url, skipCertVerify: skip_cert_verification, }, nil } // HTTPClient is a remote client that stores data in Consul or HTTP REST. type HTTPClient struct { - URL *url.URL + URL *url.URL skipCertVerify bool }