Merge pull request #108862 from mmiranda96/fix/stats_summary_ubuntu

Increase timeout for stats/summary check
This commit is contained in:
Kubernetes Prow Robot 2022-03-23 13:22:43 -07:00 committed by GitHub
commit 2249708b5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -411,7 +411,7 @@ func recent(d time.Duration) types.GomegaMatcher {
}, gomega.And(
gomega.BeTemporally(">=", time.Now().Add(-d)),
// Now() is the test start time, not the match time, so permit a few extra minutes.
gomega.BeTemporally("<", time.Now().Add(2*time.Minute))))
gomega.BeTemporally("<", time.Now().Add(3*time.Minute))))
}
func recordSystemCgroupProcesses() {