Increase wait times in e2e tests

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-08-19 21:25:30 -04:00
parent 43ca5f5ef1
commit b5f644f605

View file

@ -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
}