summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go b/vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go
index 5a7909095..5a8ab39d0 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/recipes/bulk_insert/bulk_insert.go
@@ -11,7 +11,7 @@
// The number of documents after which a commit happens can be specified
// via the "bulk-size" flag.
//
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-bulk.html
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-bulk.html
// for details on the Bulk API in Elasticsearch.
//
// Example
@@ -35,7 +35,7 @@ import (
"time"
"golang.org/x/sync/errgroup"
- "gopkg.in/olivere/elastic.v5"
+ "github.com/olivere/elastic"
)
func main() {