Browse Source
return mr
Signed-off-by: junjie.jiang <junjie.jiang@zilliz.com>
main
1 changed files with
1 additions and
1 deletions
-
milvus_client.py
|
@ -45,7 +45,7 @@ class MilvusClient(PyOperator): |
|
|
mr = self._collection.insert(row) |
|
|
mr = self._collection.insert(row) |
|
|
if mr.err_count > 0: |
|
|
if mr.err_count > 0: |
|
|
raise RuntimeError("Insert to milvus failed") |
|
|
raise RuntimeError("Insert to milvus failed") |
|
|
return None |
|
|
|
|
|
|
|
|
return mr |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def shared_type(self): |
|
|
def shared_type(self): |
|
|