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 committed Dec 20, 2021
1 parent 7ccaad2 commit 63c7b04
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 @@ -919,7 +919,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 63c7b04

Please sign in to comment.