From 57b538e657c874cc9c0f27b6f3219792ec30f598 Mon Sep 17 00:00:00 2001 From: Rob Scott Date: Mon, 9 Dec 2019 10:46:14 -0800 Subject: [PATCH] Increasing LoadBalancerPollTimeout from 15 to 22 minutes Some related tests were flaking as a result of GCP LBs potentially taking longer to update than 15 minutes. --- test/e2e/framework/service/const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/service/const.go b/test/e2e/framework/service/const.go index 907817d4bbc..bdf14f2035d 100644 --- a/test/e2e/framework/service/const.go +++ b/test/e2e/framework/service/const.go @@ -66,7 +66,7 @@ const ( // LoadBalancerPollTimeout is the time required by the loadbalancer to poll. // On average it takes ~6 minutes for a single backend to come online in GCE. - LoadBalancerPollTimeout = 15 * time.Minute + LoadBalancerPollTimeout = 22 * time.Minute // LoadBalancerPollInterval is the interval value in which the loadbalancer polls. LoadBalancerPollInterval = 30 * time.Second