From a38e965ad327ea3fdc5a7d75f69c049058d468e8 Mon Sep 17 00:00:00 2001 From: Filip Strozik Date: Thu, 25 Apr 2024 23:23:46 +0200 Subject: [PATCH] increate retry timeout --- tests/operator/utils/retry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/operator/utils/retry.go b/tests/operator/utils/retry.go index c5f336956..7fd026629 100644 --- a/tests/operator/utils/retry.go +++ b/tests/operator/utils/retry.go @@ -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),