From 3204e575cfb4aa81bbd140c9ec02da3efb44093d Mon Sep 17 00:00:00 2001 From: Matt Liggett Date: Fri, 16 Sep 2016 13:34:19 -0700 Subject: [PATCH] Increase schedulingTimeout due to flakiness even at 5m. --- test/e2e/disruption.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/disruption.go b/test/e2e/disruption.go index 7bad1dee8fa..99f0b6e1303 100644 --- a/test/e2e/disruption.go +++ b/test/e2e/disruption.go @@ -39,7 +39,7 @@ const timeout = 60 * time.Second // schedulingTimeout is longer specifically because sometimes we need to wait // awhile to guarantee that we've been patient waiting for something ordinary // to happen: a pod to get scheduled and move into Ready -const schedulingTimeout = 5 * time.Minute +const schedulingTimeout = 10 * time.Minute var _ = framework.KubeDescribe("DisruptionController", func() { f := framework.NewDefaultFramework("disruption")