From e939c498232141145c46cd46a4ecf5ebc3cd4532 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Mon, 5 Oct 2015 13:40:41 -0700 Subject: [PATCH] Extend a timeout to reduce flakes. --- test/e2e/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/service.go b/test/e2e/service.go index a8d81acfa99..d975460ac9d 100644 --- a/test/e2e/service.go +++ b/test/e2e/service.go @@ -1240,7 +1240,7 @@ func startServeHostnameService(c *client.Client, ns, name string, port, replicas Name: name, Namespace: ns, PollInterval: 3 * time.Second, - Timeout: 30 * time.Second, + Timeout: podReadyBeforeTimeout, Replicas: replicas, CreatedPods: &createdPods, MaxContainerFailures: &maxContainerFailures,