From 5404a4242f3423f7309d11eb21b100d3c1339916 Mon Sep 17 00:00:00 2001 From: Nikhil Thomas Date: Wed, 1 Jun 2022 19:50:01 +0530 Subject: [PATCH] Increase e2e poll timeout to 10min Set e2e poll timeout to 10 min to avoid flakes like ``` tektonconfigs.go:122: TektonConfigCR "config" failed to get to the READY status: tektonconfig config is not in desired state, got: : timed out waiting for the condition ``` Signed-off-by: Nikhil Thomas --- test/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/config.go b/test/utils/config.go index 191d6f859c..5814cb162b 100644 --- a/test/utils/config.go +++ b/test/utils/config.go @@ -4,5 +4,5 @@ import "time" var ( Interval = 10 * time.Second - Timeout = 5 * time.Minute + Timeout = 10 * time.Minute )