Increase schedulingTimeout due to flakiness even at 5m.

This commit is contained in:
Matt Liggett 2016-09-16 13:34:19 -07:00
parent 9bc7e36f4b
commit 3204e575cf

View File

@ -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")