From 2de1c36061f98fe5499619ad40ed691e492ada81 Mon Sep 17 00:00:00 2001 From: Raoof Mohammed Date: Tue, 8 Sep 2015 17:19:23 -0400 Subject: [PATCH] etcdmain: Proxy doesnt specify - listening on http or https etcdmain: Proxy doesnt specify - listening on http or https Fixes #3464 --- etcdmain/etcd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcdmain/etcd.go b/etcdmain/etcd.go index a11c4993b..8eff3ae45 100644 --- a/etcdmain/etcd.go +++ b/etcdmain/etcd.go @@ -417,7 +417,7 @@ func startProxy(cfg *config) error { return err } - host := u.Host + host := u.String() go func() { plog.Info("proxy: listening for client requests on ", host) mux := http.NewServeMux()