From b5f644f6059d39300951f16e62aff96a39223bbc Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Wed, 19 Aug 2020 21:25:30 -0400 Subject: [PATCH] Increase wait times in e2e tests --- test/e2e/framework/framework.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/framework.go b/test/e2e/framework/framework.go index ba58a376b..9c3c6e3fe 100644 --- a/test/e2e/framework/framework.go +++ b/test/e2e/framework/framework.go @@ -378,7 +378,7 @@ func (f *Framework) waitForReload(fn func()) { err := wait.Poll(Poll, DefaultTimeout, func() (bool, error) { // most of the cases reload the ingress controller // in cases where the value is not modified we could wait forever - if count > 3 { + if count > 10 { return true, nil }