Skip to content

Commit 61617f1

Browse files
committed
update
1 parent 3ef543d commit 61617f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

maintainer/barrier_event.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,10 @@ func (be *BarrierEvent) markDispatcherEventDone(dispatcherID common.DispatcherID
283283
for dispatcher := range be.reportedDispatchers {
284284
replicaSpan := be.controller.GetTask(dispatcher)
285285
if replicaSpan == nil {
286-
log.Warn("dispatcher not found, ignore",
286+
log.Info("dispatcher not found, ignore",
287287
zap.String("changefeed", be.cfID.Name()),
288288
zap.String("dispatcher", dispatcherID.String()))
289-
return
289+
continue
290290
}
291291
be.rangeChecker.AddSubRange(replicaSpan.Span.TableID, replicaSpan.Span.StartKey, replicaSpan.Span.EndKey)
292292
}
@@ -298,10 +298,10 @@ func (be *BarrierEvent) markDispatcherEventDone(dispatcherID common.DispatcherID
298298
for dispatcher := range be.reportedDispatchers {
299299
replicaSpan := be.controller.GetTask(dispatcher)
300300
if replicaSpan == nil {
301-
log.Warn("dispatcher not found, ignore",
301+
log.Info("dispatcher not found, ignore",
302302
zap.String("changefeed", be.cfID.Name()),
303303
zap.String("dispatcher", dispatcherID.String()))
304-
return
304+
continue
305305
}
306306
be.rangeChecker.AddSubRange(replicaSpan.Span.TableID, replicaSpan.Span.StartKey, replicaSpan.Span.EndKey)
307307
}

0 commit comments

Comments
 (0)