Skip to content

Commit

Permalink
fix altercollection multiple values
Browse files Browse the repository at this point in the history
Signed-off-by: Xianhui.Lin <[email protected]>
  • Loading branch information
JsDove committed Dec 12, 2024
1 parent 8d72a0c commit d80bb4d
Showing 1 changed file with 1 addition 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 @@ -340,7 +340,7 @@ def alter_collection_field_properties(
):
check_pass_param(collection_name=collection_name, properties=field_params, timeout=timeout)
request = Prepare.alter_collection_field_request(
self, collection_name=collection_name, field_name=field_name, field_param=field_params
collection_name=collection_name, field_name=field_name, field_param=field_params
)
rf = self._stub.AlterCollectionField.future(request, timeout=timeout)
status = rf.result()
Expand Down

0 comments on commit d80bb4d

Please sign in to comment.