From 71ed359c3cd211302e2f028d2bcd940b3d07e44a Mon Sep 17 00:00:00 2001 From: smellthemoon <64083300+smellthemoon@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:03:59 +0800 Subject: [PATCH] Fix rename_collection will move collection to default db (#1740) Signed-off-by: lixinguo Co-authored-by: lixinguo --- pymilvus/client/grpc_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymilvus/client/grpc_handler.py b/pymilvus/client/grpc_handler.py index 740e4ba66..714213dbc 100644 --- a/pymilvus/client/grpc_handler.py +++ b/pymilvus/client/grpc_handler.py @@ -364,7 +364,7 @@ def rename_collections( self, old_name: str, new_name: str, - new_db_name: str = "default", + new_db_name: str = "", timeout: Optional[float] = None, ): check_pass_param(collection_name=new_name)