Skip to content

Commit

Permalink
Fixing issues with go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
olivere committed Aug 28, 2018
1 parent 1b9601a commit 3b4280a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

const (
// Version is the current version of Elastic.
Version = "6.2.1"
Version = "6.2.2"

// DefaultURL is the default endpoint of Elasticsearch on the local machine.
// It is used e.g. when initializing a new Client without a specific URL.
Expand Down Expand Up @@ -452,9 +452,11 @@ func configToOptions(cfg *config.Config) ([]ClientOptionFunc, error) {
if cfg.Sniff != nil {
options = append(options, SetSniff(*cfg.Sniff))
}
/*
if cfg.Healthcheck != nil {
options = append(options, SetHealthcheck(*cfg.Healthcheck))
}
*/
}
return options, nil
}
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/olivere/elastic/v6
require (
github.com/fortytw2/leaktest v1.2.0
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329
github.com/olivere/elastic v6.1.25+incompatible
github.com/opentracing/opentracing-go v1.0.2
github.com/pkg/errors v0.8.0
github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9
Expand Down

0 comments on commit 3b4280a

Please sign in to comment.