From 6e2cb00008cbf09e556b00f87603797fcaa47e09 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 16 Apr 2018 05:37:14 -0700 Subject: Depenancy upgrades and movign to dep. (#8630) --- vendor/gopkg.in/olivere/elastic.v5/cluster_health.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'vendor/gopkg.in/olivere/elastic.v5/cluster_health.go') diff --git a/vendor/gopkg.in/olivere/elastic.v5/cluster_health.go b/vendor/gopkg.in/olivere/elastic.v5/cluster_health.go index f960cfe8e..a3ee72cd1 100644 --- a/vendor/gopkg.in/olivere/elastic.v5/cluster_health.go +++ b/vendor/gopkg.in/olivere/elastic.v5/cluster_health.go @@ -10,7 +10,7 @@ import ( "net/url" "strings" - "github.com/olivere/elastic/uritemplates" + "gopkg.in/olivere/elastic.v5/uritemplates" ) // ClusterHealthService allows to get a very simple status on the health of the cluster. @@ -131,7 +131,7 @@ func (s *ClusterHealthService) buildURL() (string, url.Values, error) { // Add query string parameters params := url.Values{} if s.pretty { - params.Set("pretty", "true") + params.Set("pretty", "1") } if s.level != "" { params.Set("level", s.level) @@ -179,11 +179,7 @@ func (s *ClusterHealthService) Do(ctx context.Context) (*ClusterHealthResponse, } // Get HTTP response - res, err := s.client.PerformRequest(ctx, PerformRequestOptions{ - Method: "GET", - Path: path, - Params: params, - }) + res, err := s.client.PerformRequest(ctx, "GET", path, params, nil) if err != nil { return nil, err } -- cgit v1.2.3-1-g7c22