From 8cfea7e187ea4c3a4b8d03328aa526e9075eceb2 Mon Sep 17 00:00:00 2001 From: RainbowMango Date: Mon, 5 Jul 2021 11:03:51 +0800 Subject: [PATCH] Enlarge E2E poll timeout to 300s. Signed-off-by: RainbowMango --- test/e2e/suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/suite_test.go b/test/e2e/suite_test.go index f47d899b0..6131c9f92 100644 --- a/test/e2e/suite_test.go +++ b/test/e2e/suite_test.go @@ -39,7 +39,7 @@ const ( // pollInterval defines the interval time for a poll operation. pollInterval = 5 * time.Second // pollTimeout defines the time after which the poll operation times out. - pollTimeout = 60 * time.Second + pollTimeout = 300 * time.Second // MinimumCluster represents the minimum number of member clusters to run E2E test. MinimumCluster = 2