From 6ff6c7c731ed100e74296f03af84e8fefbb3387c Mon Sep 17 00:00:00 2001 From: Eric Tune Date: Mon, 5 Oct 2015 12:55:24 -0700 Subject: [PATCH] Wait longer for job to complete 2 timeouts in last 30 e2e runs. Tripling timeout. Should normally not that that long. Uses polling so will terminate early in normal case. --- test/e2e/job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/job.go b/test/e2e/job.go index 0b20a61199f..063b2066fbd 100644 --- a/test/e2e/job.go +++ b/test/e2e/job.go @@ -34,7 +34,7 @@ import ( const ( // How long to wait for a job to finish. - jobTimeout = 5 * time.Minute + jobTimeout = 15 * time.Minute // Job selector name jobSelectorKey = "job"