@@ -283,10 +283,10 @@ func (be *BarrierEvent) markDispatcherEventDone(dispatcherID common.DispatcherID
283
283
for dispatcher := range be .reportedDispatchers {
284
284
replicaSpan := be .controller .GetTask (dispatcher )
285
285
if replicaSpan == nil {
286
- log .Warn ("dispatcher not found, ignore" ,
286
+ log .Info ("dispatcher not found, ignore" ,
287
287
zap .String ("changefeed" , be .cfID .Name ()),
288
288
zap .String ("dispatcher" , dispatcherID .String ()))
289
- return
289
+ continue
290
290
}
291
291
be .rangeChecker .AddSubRange (replicaSpan .Span .TableID , replicaSpan .Span .StartKey , replicaSpan .Span .EndKey )
292
292
}
@@ -298,10 +298,10 @@ func (be *BarrierEvent) markDispatcherEventDone(dispatcherID common.DispatcherID
298
298
for dispatcher := range be .reportedDispatchers {
299
299
replicaSpan := be .controller .GetTask (dispatcher )
300
300
if replicaSpan == nil {
301
- log .Warn ("dispatcher not found, ignore" ,
301
+ log .Info ("dispatcher not found, ignore" ,
302
302
zap .String ("changefeed" , be .cfID .Name ()),
303
303
zap .String ("dispatcher" , dispatcherID .String ()))
304
- return
304
+ continue
305
305
}
306
306
be .rangeChecker .AddSubRange (replicaSpan .Span .TableID , replicaSpan .Span .StartKey , replicaSpan .Span .EndKey )
307
307
}
0 commit comments