From 476103a82223522d18becdd392a10d3fde115112 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Thu, 7 Apr 2016 14:12:38 -0700 Subject: [PATCH] bump single call timeout in e2e tests --- test/e2e/util.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/util.go b/test/e2e/util.go index 96ae79c0465..02e885e6bda 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -112,7 +112,8 @@ const ( // How long to try single API calls (like 'get' or 'list'). Used to prevent // transient failures from failing tests. - singleCallTimeout = 30 * time.Second + // TODO: client should not apply this timeout to Watch calls. Increased from 30s until that is fixed. + singleCallTimeout = 5 * time.Minute // How long nodes have to be "ready" when a test begins. They should already // be "ready" before the test starts, so this is small.