mirror of https://github.com/milvus-io/milvus.git
Fix DataNode processes event out of order (#17440)
The probability is low so very unlikly to reproduce See also: #15966 Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/17447/head
parent
a0854210b7
commit
4f66bcbb22
|
@ -259,7 +259,8 @@ func (node *DataNode) StartWatchChannels(ctx context.Context) {
|
|||
return
|
||||
}
|
||||
for _, evt := range event.Events {
|
||||
go node.handleChannelEvt(evt)
|
||||
// We need to stay in order until events enqueued
|
||||
node.handleChannelEvt(evt)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue