Skip to content

Commit

Permalink
Double numer of steps for criBackoff (#3119)
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Jun 29, 2022
1 parent 295a150 commit 514ae51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/rke2/spw.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ var podCheckBackoff = wait.Backoff{
Jitter: 0.1,
}

// total of 31 seconds
// total of 511 seconds
var criBackoff = wait.Backoff{
Steps: 5,
Steps: 10,
Duration: 1 * time.Second,
Factor: 2,
Jitter: 0.1,
Expand Down

0 comments on commit 514ae51

Please sign in to comment.