mirror of https://github.com/milvus-io/milvus.git
fix: binlog reader not released in time (#36078)
https://github.com/milvus-io/milvus/issues/36077 Signed-off-by: fengjun2016 <jornfeng@gmail.com>pull/36087/head
parent
9a8ed9af5f
commit
62f4a6a112
|
@ -437,6 +437,7 @@ func (insertCodec *InsertCodec) DeserializeInto(fieldBinlogs []*Blob, rowNum int
|
|||
for {
|
||||
eventReader, err := binlogReader.NextEventReader()
|
||||
if err != nil {
|
||||
binlogReader.Close()
|
||||
return InvalidUniqueID, InvalidUniqueID, InvalidUniqueID, err
|
||||
}
|
||||
if eventReader == nil {
|
||||
|
|
Loading…
Reference in New Issue