Skip to content

Commit

Permalink
Update ceda_elasticsearch_client.py
Browse files Browse the repository at this point in the history
removed print statements
  • Loading branch information
Adik8688 authored Nov 27, 2024
1 parent c004d07 commit b727e0a
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,8 @@ def __init__(self, hosts=['es%s.ceda.ac.uk:9200' % i for i in range(1,9)], use_s
# Add scheme to hosts if not included
hosts = [f"{prefix}{host.split('://', 1)[1]}" if host.startswith(("http://", "https://")) else f"{prefix}{host}" for host in hosts]

print("#\n" * 5)
print(hosts)
print(ca_certs)
print(kwargs)
print("#\n" * 5)




super(CEDAElasticsearchClient, self).__init__(
hosts=hosts,
ca_certs=ca_certs,
**kwargs
)
)

0 comments on commit b727e0a

Please sign in to comment.