From 0bb9fe9f50a4c1163025cffc3b2aa048c9337ab7 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Fri, 9 Aug 2013 17:10:09 -0700 Subject: [PATCH] hack(go-etcd): stop appending schema to everything trying to get the new tests to pass. --- third_party/github.com/coreos/go-etcd/etcd/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/github.com/coreos/go-etcd/etcd/client.go b/third_party/github.com/coreos/go-etcd/etcd/client.go index 703b4cec4..b6a66ccb4 100644 --- a/third_party/github.com/coreos/go-etcd/etcd/client.go +++ b/third_party/github.com/coreos/go-etcd/etcd/client.go @@ -139,7 +139,6 @@ func (c *Client) internalSyncCluster(machines []string) bool { // serverName should contain both hostName and port func (c *Client) createHttpPath(serverName string, _path string) string { httpPath := path.Join(serverName, _path) - httpPath = c.config.Scheme + "://" + httpPath return httpPath }