From 392aedda5d26612ae3358ff978cac465554ef466 Mon Sep 17 00:00:00 2001 From: Glen Smith Date: Wed, 23 Aug 2017 19:33:32 +0200 Subject: [PATCH] Remove occurrences of non-ASCII chars from docs --- elasticsearch/client/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/elasticsearch/client/__init__.py b/elasticsearch/client/__init__.py index 37b74513..59858549 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 @@ -1387,4 +1387,3 @@ class Elasticsearch(object): """ return self.transport.perform_request('GET', _make_path(index, '_field_caps'), params=params, body=body) -