From 66428e5a1df4767be2b7fd9bc0222891785dc118 Mon Sep 17 00:00:00 2001 From: Bichitra Date: Tue, 17 Sep 2019 13:08:17 +0530 Subject: [PATCH] moved request_timeout to a new line --- elasticsearch/client/indices.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elasticsearch/client/indices.py b/elasticsearch/client/indices.py index 2f0f26ae..4457b4e7 100644 --- a/elasticsearch/client/indices.py +++ b/elasticsearch/client/indices.py @@ -80,7 +80,8 @@ class IndicesClient(NamespacedClient): @query_params( "master_timeout", - "timeout", "request_timeout", + "timeout", + "request_timeout", "wait_for_active_shards", "include_type_name", )