We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a921a3 commit 37b7355Copy full SHA for 37b7355
1 file changed
flowllm/core/vector_store/es_vector_store.py
@@ -59,7 +59,7 @@ def init_client(self):
59
self.hosts = [self.hosts]
60
self._client = Elasticsearch(hosts=self.hosts, basic_auth=self.basic_auth)
61
self._async_client = AsyncElasticsearch(hosts=self.hosts, basic_auth=self.basic_auth)
62
- logger.info(f"Elasticsearch client initialized with hosts: {self.hosts}")
+ logger.info(f"Elasticsearch client initialized with hosts={self.hosts} basic_auth={self.basic_auth}")
63
return self
64
65
def exist_workspace(self, workspace_id: str, **kwargs) -> bool:
0 commit comments