Skip to content

Commit

Permalink
ddl: handle create writer error for index ingest operator (#53916) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Jul 22, 2024
1 parent 5160957 commit a4cb63e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ddl/backfilling_operators.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ func NewIndexIngestOperator(
writer, err := engines[i].CreateWriter(writerID)
if err != nil {
logutil.Logger(ctx).Error("create index ingest worker failed", zap.Error(err))
ctx.onError(err)
return nil
}
writers = append(writers, writer)
Expand Down

0 comments on commit a4cb63e

Please sign in to comment.