From f7da8092090934f60c9b6ea9c5ffccec5b70eb92 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Wed, 21 Mar 2018 13:26:49 -0700 Subject: [PATCH] Increase API watch test timeout to avoid flakes. --- test/e2e/apimachinery/watch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/apimachinery/watch.go b/test/e2e/apimachinery/watch.go index 6a46c6621b2..b8e178d6dae 100644 --- a/test/e2e/apimachinery/watch.go +++ b/test/e2e/apimachinery/watch.go @@ -191,7 +191,7 @@ func expectNoEvent(w watch.Interface, eventType watch.EventType, object runtime. } func waitForEvent(w watch.Interface, expectType watch.EventType, expectObject runtime.Object) (watch.Event, bool) { - stopTimer := time.NewTimer(10 * time.Second) + stopTimer := time.NewTimer(1 * time.Minute) for { select { case actual := <-w.ResultChan():