Skip to content
This repository has been archived by the owner on Sep 27, 2018. It is now read-only.

Commit

Permalink
Fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
olivere committed Feb 27, 2017
1 parent 0d39061 commit 26327a8
Show file tree
Hide file tree
Showing 367 changed files with 51,067 additions and 3 deletions.
9 changes: 9 additions & 0 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions glide.yaml
@@ -0,0 +1,3 @@
package: github.com/olivere/es
import:
- package: gopkg.in/olivere/elastic.v2
4 changes: 2 additions & 2 deletions indices.go
Expand Up @@ -6,7 +6,7 @@ import (
"regexp"
"sort"

"github.com/olivere/elastic"
elastic "gopkg.in/olivere/elastic.v2"
)

var cmdIndices = &Command{
Expand Down Expand Up @@ -38,7 +38,7 @@ func runIndices(cmd *Command, args []string) {
}

// Get a client
client, err := elastic.NewClient(elastic.SetURL(esUrl))
client, err := elastic.NewClient(elastic.SetURL(esUrl), elastic.SetSniff(false))
if err != nil {
log.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion reindex.go
Expand Up @@ -6,7 +6,7 @@ import (
_ "net/http/httputil"
"os"

"github.com/olivere/elastic"
elastic "gopkg.in/olivere/elastic.v2"
)

var cmdReindex = &Command{
Expand Down
29 changes: 29 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/CONTRIBUTING.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/CONTRIBUTORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/ISSUE_TEMPLATE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions vendor/gopkg.in/olivere/elastic.v2/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 26327a8

Please sign in to comment.