From 71222abeff92681546eab08f46f1ac0fdf9f4278 Mon Sep 17 00:00:00 2001 From: Nick Lang Date: Wed, 6 Sep 2017 23:18:59 -0500 Subject: [PATCH 1/2] somewhere somehow a non ascii char got in these doc strings --- elasticsearch/client/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elasticsearch/client/__init__.py b/elasticsearch/client/__init__.py index 37b74513..f514f590 100644 --- a/elasticsearch/client/__init__.py +++ b/elasticsearch/client/__init__.py @@ -586,7 +586,7 @@ class Elasticsearch(object): grows with the number of nodes in the cluster but is at most 256.' :arg pre_filter_shard_size: A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if - the number of shards the search request expands to exceeds the + the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on it's rewrite method ie. if date filters are mandatory to @@ -1145,7 +1145,7 @@ class Elasticsearch(object): searches the multi search api will execute :arg pre_filter_shard_size: A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if - the number of shards the search request expands to exceeds the + the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on it's rewrite method ie. if date filters are mandatory to From 24e5564f37c781c340efef9f5245c74fe0b0feb6 Mon Sep 17 00:00:00 2001 From: Nick Lang Date: Thu, 7 Sep 2017 09:27:06 -0500 Subject: [PATCH 2/2] using 6.0.0-beta2 for travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c032aa6f..98c60f31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: - java -version install: - - curl -L -o /tmp/es-snap.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.4.1.zip + - curl -L -o /tmp/es-snap.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.0.0-beta2.zip - unzip /tmp/es-snap.zip -d /tmp/ - /tmp/elasticsearch-*/bin/elasticsearch -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test -d - git clone https://github.com/elastic/elasticsearch.git ../elasticsearch