Skip to content

Commit 4faf768

Browse files
Merge pull request #30393 from jupierce/flakes
NO-JIRA: Extend project deletion timeout
2 parents 62de0fd + 5c20ed4 commit 4faf768

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/extended/project/project.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ func waitForDelete(projectName string, w watch.Interface) {
235235
return
236236
}
237237

238-
case <-time.After(5 * time.Minute):
238+
case <-time.After(10 * time.Minute):
239239
g.Fail(fmt.Sprintf("timeout: %v", projectName))
240240
}
241241
}
@@ -326,7 +326,7 @@ func waitForOnlyDelete(projectName string, w watch.Interface) {
326326
}
327327
g.Fail(fmt.Sprintf("got unexpected project %v", project.Name))
328328

329-
case <-time.After(3 * time.Minute): // namespace deletions can take a while during busy e2e runs
329+
case <-time.After(10 * time.Minute): // namespace deletions can take a while during busy e2e runs
330330
g.Fail(fmt.Sprintf("timeout: %v", projectName))
331331
}
332332
}

0 commit comments

Comments
 (0)