Skip to content

Commit

Permalink
ticdc/processor: Fix backoff base delay misconfiguration (pingcap#3992)…
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Dec 24, 2021
1 parent da58b8c commit f4048d8
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 @@ -700,7 +700,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 f4048d8

Please sign in to comment.