mirror of https://github.com/milvus-io/milvus.git
fix: unhandle error in upsert task (#36604)
issue: #36611 Signed-off-by: jaime <yun.zhang@zilliz.com>pull/36617/head
parent
a25dc98794
commit
5686a9a024
|
@ -464,7 +464,7 @@ func (it *upsertTask) deleteExecute(ctx context.Context, msgPack *msgstream.MsgP
|
|||
if !ok {
|
||||
msgid, err := it.idAllocator.AllocOne()
|
||||
if err != nil {
|
||||
errors.Wrap(err, "failed to allocate MsgID for delete of upsert")
|
||||
return errors.Wrap(err, "failed to allocate MsgID for delete of upsert")
|
||||
}
|
||||
sliceRequest := &msgpb.DeleteRequest{
|
||||
Base: commonpbutil.NewMsgBase(
|
||||
|
|
Loading…
Reference in New Issue