Skip to content

Commit 5fc72f4

Browse files
fix weaviate client bug
Signed-off-by: min.tian <[email protected]>
1 parent d11330d commit 5fc72f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(
2323
**kwargs,
2424
):
2525
"""Initialize wrapper around the weaviate vector database."""
26-
db_config.update("auth_client_secret", weaviate.AuthApiKey(api_key=db_config.get("auth_client_secret")))
26+
db_config.update({"auth_client_secret": weaviate.AuthApiKey(api_key=db_config.get("auth_client_secret"))})
2727
self.db_config = db_config
2828
self.case_config = db_case_config
2929
self.collection_name = collection_name

0 commit comments

Comments
 (0)