Skip to content

Commit

Permalink
test: bump wait time from 10m -> 20m to avoid early timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
rquitales committed Jul 28, 2023
1 parent 72e6429 commit 618c947
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ import (
)

// Each resource request will be fetched from the Kubernetes API Server at a
// max of 20 retries, with 15 seconds in between each attempt.
// This creates a max wait time of up to 5 minutes that a resource request
// max of 80 retries, with 15 seconds in between each attempt.
// This creates a max wait time of up to 20 minutes that a resource request
// must successfully return within, before moving on.

// MaxRetries is the maximum number of retries that a resource will be
// attempted to be fetched from the Kubernetes API Server.
const MaxRetries = 40
const MaxRetries = 80

// RetryInterval is the number of seconds to sleep in between requests
// to the Kubernetes API Server.
Expand Down

0 comments on commit 618c947

Please sign in to comment.