From c6d903eb275042a32de452af8447b26a1ec061cf Mon Sep 17 00:00:00 2001 From: Mike Miranda Date: Wed, 2 Feb 2022 06:17:44 +0000 Subject: [PATCH] Increase timeout for initial /stats/summary validation --- test/e2e_node/summary_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index 223098b39c9..01e3196f797 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -68,7 +68,7 @@ var _ = SIGDescribe("Summary API [NodeConformance]", func() { } } return nil - }, 2*time.Minute, 5*time.Second).Should(gomega.BeNil()) + }, time.Minute, 5*time.Second).Should(gomega.BeNil()) ginkgo.By("Waiting 15 seconds for cAdvisor to collect 2 stats points") time.Sleep(15 * time.Second) @@ -324,7 +324,7 @@ var _ = SIGDescribe("Summary API [NodeConformance]", func() { ginkgo.By("Validating /stats/summary") // Give pods a minute to actually start up. - gomega.Eventually(getNodeSummary, 90*time.Second, 15*time.Second).Should(matchExpectations) + gomega.Eventually(getNodeSummary, 180*time.Second, 15*time.Second).Should(matchExpectations) // Then the summary should match the expectations a few more times. gomega.Consistently(getNodeSummary, 30*time.Second, 15*time.Second).Should(matchExpectations) })