mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
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>
This commit is contained in:
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…
x
Reference in New Issue
Block a user