From f71baba64fd72e2f0042a19c8a2f57f0d9a6d9fc Mon Sep 17 00:00:00 2001 From: Piotr Szczesniak Date: Wed, 3 Jun 2015 13:29:09 +0200 Subject: [PATCH] Increased failCount param in RunRC function for e2e tests. The previous value was 10 (equivalent of 50sec) current is 24 (2min). Time in brackets mean: how long should I wait for the next pod of RC to be created. While we are creating 3000 pods for scalability tests it tends to fail. --- test/e2e/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/util.go b/test/e2e/util.go index 35790bd80bb..b59f5ac743c 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -797,7 +797,7 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int) error defer podStore.Stop() pods := podStore.List() current = len(pods) - failCount := 5 + failCount := 24 for same < failCount && current < replicas { Logf("%v Controller %s: Found %d pods out of %d", time.Now(), name, current, replicas) if last < current {