From 85928a5f3fedab50b7912476e6bb6cbfbf258c20 Mon Sep 17 00:00:00 2001 From: David Thornton Date: Wed, 21 Oct 2015 11:31:29 -0400 Subject: [PATCH] fixed slight typo in decription of timeout in put_alias and delete_alias --- elasticsearch/client/indices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elasticsearch/client/indices.py b/elasticsearch/client/indices.py index 478afae9..8d5179f4 100644 --- a/elasticsearch/client/indices.py +++ b/elasticsearch/client/indices.py @@ -356,7 +356,7 @@ class IndicesClient(NamespacedClient): :arg name: The name of the alias to be created or updated :arg body: The settings for the alias, such as `routing` or `filter` :arg master_timeout: Specify timeout for connection to master - :arg timeout: Explicit timestamp for the document + :arg timeout: Explicit timeout for the operation """ for param in (index, name): if param in SKIP_IN_PATH: @@ -460,7 +460,7 @@ class IndicesClient(NamespacedClient): wildcards); use `_all` to delete all aliases for the specified indices. :arg master_timeout: Specify timeout for connection to master - :arg timeout: Explicit timestamp for the document + :arg timeout: Explicit timeout for the operation """ for param in (index, name): if param in SKIP_IN_PATH: