From 86739e4d376fbf7f09fb3975b9fb758d5041ffe4 Mon Sep 17 00:00:00 2001 From: gabriellaPaschaVanoord <87004337+gabriellaPaschaVanoord@users.noreply.github.com> Date: Fri, 3 Jun 2022 13:30:31 +0200 Subject: [PATCH] The transport class does not accept these parameters in its constructor. It is passed in the node_configs instead. --- elastic_enterprise_search/_sync/client/_base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/elastic_enterprise_search/_sync/client/_base.py b/elastic_enterprise_search/_sync/client/_base.py index cdfe1f6..216256d 100644 --- a/elastic_enterprise_search/_sync/client/_base.py +++ b/elastic_enterprise_search/_sync/client/_base.py @@ -80,12 +80,6 @@ def __init__( ): if _transport is None: transport_kwargs = {} - if connections_per_node is not DEFAULT: - transport_kwargs["connections_per_node"] = connections_per_node - if http_compress is not DEFAULT: - transport_kwargs["http_compress"] = http_compress - if verify_certs is not DEFAULT: - transport_kwargs["verify_certs"] = verify_certs if node_class is not DEFAULT: transport_kwargs["node_class"] = node_class if dead_node_backoff_factor is not DEFAULT: