Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/extended/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func waitForDelete(projectName string, w watch.Interface) {
return
}

case <-time.After(5 * time.Minute):
case <-time.After(10 * time.Minute):
g.Fail(fmt.Sprintf("timeout: %v", projectName))
}
}
Expand Down Expand Up @@ -326,7 +326,7 @@ func waitForOnlyDelete(projectName string, w watch.Interface) {
}
g.Fail(fmt.Sprintf("got unexpected project %v", project.Name))

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