Skip to content

Commit

Permalink
increase etcd sync config backoff
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Nov 5, 2024
1 parent 982bc3b commit 9c343b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/component/controller/etcd.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ func (e *Etcd) syncEtcdConfig(ctx context.Context, etcdRequest v1beta1.EtcdReque
etcdResponse, err = e.JoinClient.JoinEtcd(ctx, etcdRequest)
return err
},
retry.Delay(1*time.Second),
retry.MaxJitter(1*time.Second),
retry.Context(ctx),
retry.LastErrorOnly(true),
retry.OnRetry(func(attempt uint, err error) {
Expand Down

0 comments on commit 9c343b8

Please sign in to comment.