mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 14:35:27 +08:00
fix: lost broadcasting persisted before making message broadcast (#46328)
issue: #43897 Signed-off-by: chyezh <chyezh@outlook.com>
This commit is contained in:
parent
f6f716bcfd
commit
9ce5f08cc7
@ -28,7 +28,7 @@ func newBroadcastTaskFromProto(proto *streamingpb.BroadcastTask, metrics *broadc
|
||||
taskMetricsGuard: m,
|
||||
msg: msg,
|
||||
task: proto,
|
||||
dirty: true, // the task is recovered from the recovery info, so it's persisted.
|
||||
dirty: false, // the task is recovered from the recovery info, so it's persisted.
|
||||
ackCallbackScheduler: ackCallbackScheduler,
|
||||
done: make(chan struct{}),
|
||||
allAcked: make(chan struct{}),
|
||||
@ -76,7 +76,7 @@ func newBroadcastTaskFromBroadcastMessage(msg message.BroadcastMutableMessage, m
|
||||
AckedVchannelBitmap: make([]byte, len(header.VChannels)),
|
||||
AckedCheckpoints: make([]*streamingpb.AckedCheckpoint, len(header.VChannels)),
|
||||
},
|
||||
dirty: false,
|
||||
dirty: true,
|
||||
ackCallbackScheduler: ackCallbackScheduler,
|
||||
done: make(chan struct{}),
|
||||
allAcked: make(chan struct{}),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user