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/indices_analyze.go | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'vendor/gopkg.in/olivere/elastic.v5/indices_analyze.go') diff --git a/vendor/gopkg.in/olivere/elastic.v5/indices_analyze.go b/vendor/gopkg.in/olivere/elastic.v5/indices_analyze.go index fb3a91234..b9000f128 100644 --- a/vendor/gopkg.in/olivere/elastic.v5/indices_analyze.go +++ b/vendor/gopkg.in/olivere/elastic.v5/indices_analyze.go @@ -9,13 +9,13 @@ import ( "fmt" "net/url" - "github.com/olivere/elastic/uritemplates" + "gopkg.in/olivere/elastic.v5/uritemplates" ) // IndicesAnalyzeService performs the analysis process on a text and returns // the tokens breakdown of the text. // -// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/indices-analyze.html +// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/indices-analyze.html // for detail. type IndicesAnalyzeService struct { client *Client @@ -152,7 +152,7 @@ func (s *IndicesAnalyzeService) 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.format != "" { params.Set("format", s.format) @@ -185,16 +185,11 @@ func (s *IndicesAnalyzeService) Do(ctx context.Context) (*IndicesAnalyzeResponse } else { // Request parameters are deprecated in 5.1.1, and we must use a JSON // structure in the body to pass the parameters. - // See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/indices-analyze.html + // See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/indices-analyze.html body = s.request } - res, err := s.client.PerformRequest(ctx, PerformRequestOptions{ - Method: "POST", - Path: path, - Params: params, - Body: body, - }) + res, err := s.client.PerformRequest(ctx, "POST", path, params, body) if err != nil { return nil, err } -- cgit v1.2.3-1-g7c22