diff --git a/ceda_elasticsearch_tools/elasticsearch/ceda_elasticsearch_client.py b/ceda_elasticsearch_tools/elasticsearch/ceda_elasticsearch_client.py index f5b5da2..aec2f1b 100644 --- a/ceda_elasticsearch_tools/elasticsearch/ceda_elasticsearch_client.py +++ b/ceda_elasticsearch_tools/elasticsearch/ceda_elasticsearch_client.py @@ -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 - ) \ No newline at end of file + )