From 38fbc44b4047f18ab80c7e628ae93fd7e5e46127 Mon Sep 17 00:00:00 2001 From: Ryotaro Banno Date: Fri, 6 Dec 2024 00:48:30 +0000 Subject: [PATCH] test/e2e: lenghthen timeout to wait for SyncToRemote to be True According to some tries, the current timeout 5m is too short to wait for SyncToRemote to be true in the e2e test, probably due to the exponential backoff of `Requeue: true`. This commit lengthens its value to 10m to resolve this problem in an ad hoc way. A fundamental resolution should come in another PR. Signed-off-by: Ryotaro Banno --- test/e2e/multik8s/suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/multik8s/suite_test.go b/test/e2e/multik8s/suite_test.go index 77974efe..4796eea4 100644 --- a/test/e2e/multik8s/suite_test.go +++ b/test/e2e/multik8s/suite_test.go @@ -89,7 +89,7 @@ func replicationTestSuite() { return errors.New("status of SyncedToRemote condition is not True") } return nil - }, "5m", "1s").Should(Succeed()) + }, "10m", "1s").Should(Succeed()) By("checking PVC is replicated") Eventually(func() error {