fix: change milvus init args from (host, port) to (url, token) (#8019)

Signed-off-by: ChengZi <chen.zhang@zilliz.com>
This commit is contained in:
ChengZi
2024-09-06 17:32:48 +08:00
committed by GitHub
parent 9ded063417
commit 2060db8e11
9 changed files with 42 additions and 111 deletions

View File

@@ -12,8 +12,7 @@ class MilvusVectorTest(AbstractVectorTest):
self.vector = MilvusVector(
collection_name=self.collection_name,
config=MilvusConfig(
host="localhost",
port=19530,
uri="http://localhost:19530",
user="root",
password="Milvus",
),