Skip to content

Commit

Permalink
increase certificate retry duration
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhouston committed Nov 25, 2024
1 parent f7c6cb5 commit 01b566e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ func (r *CertificateSigningRequestEphemeralResource) Open(ctx context.Context, r
// wait for the certificate to be issued
waitingErr := fmt.Errorf("timed out waiting for certificate")
waitForIssue := kwait.Backoff{
Steps: 5,
Duration: 1 * time.Second,
Factor: 1.0,
Steps: 10,
Duration: 5 * time.Second,
Factor: 1.5,
Jitter: 0.1,
}
err = kretry.OnError(waitForIssue, func(e error) bool { return e == waitingErr }, func() error {
Expand Down

0 comments on commit 01b566e

Please sign in to comment.