Skip to content

Commit

Permalink
databaseinfo add todict method
Browse files Browse the repository at this point in the history
Signed-off-by: Xianhui.Lin <[email protected]>
  • Loading branch information
JsDove committed Dec 16, 2024
1 parent e1d963f commit d62842d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pymilvus/client/grpc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,7 @@ def describe_database(self, db_name: str, timeout: Optional[float] = None):
request = Prepare.describe_database_req(db_name=db_name)
resp = self._stub.DescribeDatabase(request, timeout=timeout)
check_status(resp.status)
return DatabaseInfo(resp).properties
return DatabaseInfo(resp).to_dict()

@retry_on_rpc_failure()
def get_load_state(
Expand Down
4 changes: 4 additions & 0 deletions pymilvus/client/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,3 +1020,7 @@ def __init__(self, info: Any) -> None:

def __str__(self) -> str:
return f"DatabaseInfo(name={self.name}, properties={self.properties})"

def to_dict(self) -> Dict[str, Any]:
"""Converts the DatabaseInfo instance to a dictionary."""
return {"name": self.name, "properties": self.properties}

0 comments on commit d62842d

Please sign in to comment.