Skip to content

Commit

Permalink
Fix pass extra param (#1713)
Browse files Browse the repository at this point in the history
Signed-off-by: lixinguo <[email protected]>
Co-authored-by: lixinguo <[email protected]>
  • Loading branch information
smellthemoon and lixinguo authored Sep 22, 2023
1 parent bac3195 commit 4347ebb
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 @@ -697,7 +697,7 @@ def upsert_rows(
if isinstance(entities, dict):
entities = [entities]
request = self._prepare_row_upsert_request(
collection_name, entities, partition_name, timeout, False, **kwargs
collection_name, entities, partition_name, timeout, **kwargs
)
rf = self._stub.Upsert.future(request, timeout=timeout)
response = rf.result()
Expand Down

0 comments on commit 4347ebb

Please sign in to comment.