mirror of https://github.com/milvus-io/milvus.git
fix: Fix compile error (#35442)
issue: https://github.com/milvus-io/milvus/issues/33285 Signed-off-by: bigsheeper <yihao.dai@zilliz.com>pull/35377/head
parent
efadf22802
commit
e58d656e65
|
@ -412,7 +412,7 @@ func (s *broadcastCreatePartitionMsgStep) Execute(ctx context.Context) ([]nested
|
|||
msgs = append(msgs, msg)
|
||||
}
|
||||
resp := streaming.WAL().Append(ctx, msgs...)
|
||||
if err := resp.IsAnyError(); err != nil {
|
||||
if err := resp.UnwrapFirstError(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return nil, nil
|
||||
|
|
Loading…
Reference in New Issue