Skip to content

Commit ad4c6bd

Browse files
authored
Bump parks app timeout to 10 minutes (#421)
1 parent bab30bf commit ad4c6bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/e2e/backup_restore_suite_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var _ = Describe("AWS backup restore tests", func() {
3737
log.Printf("Waiting for restic pods to be running")
3838
Eventually(areResticPodsRunning(namespace), timeoutMultiplier*time.Minute*3, time.Second*5).Should(BeTrue())
3939
}
40-
40+
4141
if vel.CustomResource.Spec.BackupImages == nil || *vel.CustomResource.Spec.BackupImages {
4242
log.Printf("Waiting for registry pods to be running")
4343
Eventually(areRegistryDeploymentsAvailable(namespace), timeoutMultiplier*time.Minute*3, time.Second*5).Should(BeTrue())
@@ -156,7 +156,7 @@ var _ = Describe("AWS backup restore tests", func() {
156156
ApplicationNamespace: "parks-app",
157157
Name: "parks-e2e",
158158
PreBackupVerify: VerificationFunction(func(ocClient client.Client, namespace string) error {
159-
Eventually(isDCReady(ocClient, "parks-app", "restify"), timeoutMultiplier*time.Minute*5, time.Second*10).Should(BeTrue())
159+
Eventually(isDCReady(ocClient, "parks-app", "restify"), timeoutMultiplier*time.Minute*10, time.Second*10).Should(BeTrue())
160160
return nil
161161
}),
162162
PostRestoreVerify: VerificationFunction(func(ocClient client.Client, namespace string) error {
@@ -169,7 +169,7 @@ var _ = Describe("AWS backup restore tests", func() {
169169
ApplicationNamespace: "parks-app",
170170
Name: "parks-e2e",
171171
PreBackupVerify: VerificationFunction(func(ocClient client.Client, namespace string) error {
172-
Eventually(isDCReady(ocClient, "parks-app", "restify"), timeoutMultiplier*time.Minute*5, time.Second*10).Should(BeTrue())
172+
Eventually(isDCReady(ocClient, "parks-app", "restify"), timeoutMultiplier*time.Minute*10, time.Second*10).Should(BeTrue())
173173
return nil
174174
}),
175175
PostRestoreVerify: VerificationFunction(func(ocClient client.Client, namespace string) error {

0 commit comments

Comments
 (0)