From 05ad5ef96bf958a1482274c57feb56a8d873dc8d Mon Sep 17 00:00:00 2001 From: allias888 Date: Mon, 13 Mar 2017 00:51:40 +0300 Subject: [PATCH] wait for completion is on by default (#550) --- 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 7a983d1d..b75a7374 100644 --- a/elasticsearch/client/__init__.py +++ b/elasticsearch/client/__init__.py @@ -672,7 +672,7 @@ class Elasticsearch(object): equal to the total number of copies for the shard (number of replicas + 1) :arg wait_for_completion: Should the request should block until the - reindex is complete., default False + reindex is complete., default True """ if index in SKIP_IN_PATH: raise ValueError("Empty value passed for a required argument 'index'.") @@ -700,7 +700,7 @@ class Elasticsearch(object): copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) :arg wait_for_completion: Should the request should block until the - reindex is complete., default False + reindex is complete., default True """ if body in SKIP_IN_PATH: raise ValueError("Empty value passed for a required argument 'body'.")