Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed forward of non accepted parameters to transport constructor #139

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions elastic_enterprise_search/_sync/client/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down