Skip to content

Commit

Permalink
fix a code typo in processor.go
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoxinyu authored and ti-chi-bot committed Dec 23, 2021
1 parent 15e2f7d commit 5a5fccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdc/processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ func (p *processor) createTablePipelineImpl(ctx cdcContext.Context, tableID mode
}
markTableID = tableInfo.ID
return nil
}, retry.WithBackoffMaxDelay(50), retry.WithBackoffMaxDelay(60*1000), retry.WithMaxTries(20))
}, retry.WithBackoffBaseDelay(50), retry.WithBackoffMaxDelay(60*1000), retry.WithMaxTries(20))
if err != nil {
return nil, errors.Trace(err)
}
Expand Down

0 comments on commit 5a5fccf

Please sign in to comment.