From 4ce4e1e124b570d03d661f43e586d9211f9fce5e Mon Sep 17 00:00:00 2001 From: Bobby DeSimone Date: Tue, 4 Jun 2019 12:56:25 -0700 Subject: [PATCH] proxy: fix internal service url (#163) --- proxy/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/proxy.go b/proxy/proxy.go index bc2afe1fe..bb4883aa6 100755 --- a/proxy/proxy.go +++ b/proxy/proxy.go @@ -156,7 +156,7 @@ func New(opts *config.Options) (*Proxy, error) { p.AuthenticateClient, err = clients.NewAuthenticateClient("grpc", &clients.Options{ Addr: opts.AuthenticateURL.Host, - InternalAddr: opts.AuthenticateInternalAddr.String(), + InternalAddr: opts.AuthenticateInternalAddr.Host, OverrideCertificateName: opts.OverrideCertificateName, SharedSecret: opts.SharedKey, CA: opts.CA,