Skip to content

Commit 6bd120f

Browse files
Update engine/clients/elasticsearch/config.py
Co-authored-by: Kumar Shivendu <kshivendu1@gmail.com>
1 parent 213e6eb commit 6bd120f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

engine/clients/elasticsearch/config.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@
1313
def get_es_client(host, connection_params):
1414
client: Elasticsearch = None
1515
init_params = {
16-
**{
17-
"verify_certs": False,
18-
"request_timeout": ELASTIC_TIMEOUT,
19-
"retry_on_timeout": True,
20-
},
16+
"verify_certs": False,
17+
"request_timeout": ELASTIC_TIMEOUT,
18+
"retry_on_timeout": True,
2119
**connection_params,
2220
}
2321
if host.startswith("http"):

0 commit comments

Comments
 (0)