Skip to content

Commit

Permalink
fix alter_index response (#1932)
Browse files Browse the repository at this point in the history
Signed-off-by: sunby <[email protected]>
  • Loading branch information
sunby authored Feb 23, 2024
1 parent 24558a3 commit 76cc91c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pymilvus/client/grpc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1007,8 +1007,7 @@ def alter_index(

rf = self._stub.AlterIndex.future(request, timeout=timeout)
response = rf.result()
status = response.status
check_status(status)
check_status(response)

@retry_on_rpc_failure()
def list_indexes(self, collection_name: str, timeout: Optional[float] = None, **kwargs):
Expand Down

0 comments on commit 76cc91c

Please sign in to comment.