Skip to content

Commit

Permalink
increate retry timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
pPrecel committed Apr 25, 2024
1 parent 18602d0 commit a38e965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/operator/utils/retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func WithRetry(utils *TestUtils, f func(utils *TestUtils) error) error {
func() error {
return f(utils)
},
retry.Delay(1*time.Second),
retry.Delay(5*time.Second),
retry.DelayType(retry.FixedDelay),
retry.Attempts(100),
retry.Context(utils.Ctx),
Expand Down

0 comments on commit a38e965

Please sign in to comment.