Skip to content

Commit

Permalink
fix createdabse format
Browse files Browse the repository at this point in the history
Signed-off-by: Xianhui.Lin <[email protected]>
  • Loading branch information
JsDove committed Dec 13, 2024
1 parent c7e8797 commit befaf1e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pymilvus/client/grpc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,13 @@ def get_loading_progress(
return response.progress

@retry_on_rpc_failure()
def create_database(self, db_name: str, properties: Optional[dict] = None, timeout: Optional[float] = None, **kwargs):
def create_database(
self,
db_name: str,
properties: Optional[dict] = None,
timeout: Optional[float] = None,
**kwargs,
):
request = Prepare.create_database_req(db_name, properties=properties, **kwargs)
status = self._stub.CreateDatabase(request, timeout=timeout)
check_status(status)
Expand Down

0 comments on commit befaf1e

Please sign in to comment.