Skip to content

Commit

Permalink
test/e2e: lenghthen timeout to wait for SyncToRemote to be True
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
ushitora-anqou committed Dec 6, 2024
1 parent e8d6c59 commit 38fbc44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/multik8s/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 38fbc44

Please sign in to comment.