diff --git a/odd_collector/adapters/opensearch/client.py b/odd_collector/adapters/opensearch/client.py index 2a939036..0c1867ad 100644 --- a/odd_collector/adapters/opensearch/client.py +++ b/odd_collector/adapters/opensearch/client.py @@ -12,7 +12,6 @@ def __init__(self, config: OpensearchPlugin): username, password = config.username, config.password.get_secret_value() auth = (username, password) - self._os = OpenSearch( hosts=[f"{config.host}:{config.port}"], http_auth=auth,