From bae2e8a5e327270b6090e8b5270141a1a4c18612 Mon Sep 17 00:00:00 2001 From: Masaki Kimura Date: Wed, 28 Nov 2018 00:04:52 +0000 Subject: [PATCH] Fix timeout for testPodFailSubpathError longer to avoid flake --- test/e2e/storage/testsuites/subpath.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/storage/testsuites/subpath.go b/test/e2e/storage/testsuites/subpath.go index b87cf85a7a1..e97ed7d1a22 100644 --- a/test/e2e/storage/testsuites/subpath.go +++ b/test/e2e/storage/testsuites/subpath.go @@ -595,7 +595,7 @@ func testPodFailSubpathError(f *framework.Framework, pod *v1.Pod, errorMsg strin "involvedObject.namespace": f.Namespace.Name, "reason": "Failed", }.AsSelector().String() - err = framework.WaitTimeoutForPodEvent(f.ClientSet, pod.Name, f.Namespace.Name, selector, errorMsg, framework.PodEventTimeout) + err = framework.WaitTimeoutForPodEvent(f.ClientSet, pod.Name, f.Namespace.Name, selector, errorMsg, framework.PodStartTimeout) Expect(err).NotTo(HaveOccurred(), "while waiting for failed event to occur") }