From 8f0006e8f8cd5e10b08ce0ee12dd8bd390c8e148 Mon Sep 17 00:00:00 2001 From: Wojciech Tyczynski Date: Tue, 6 Sep 2016 12:01:32 +0200 Subject: [PATCH] Increase timeout for pods GC in tests --- test/e2e/framework/util.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 0178dc507c2..6f47b840d3f 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -3368,6 +3368,8 @@ func DeleteRCAndWaitForGC(c *client.Client, ns, name string) error { timeout = 10 * time.Minute } else { timeout = time.Duration(rc.Spec.Replicas/gcThroughput) * time.Second + // gcThroughput is pretty strict now, add a bit more to it + timeout = timeout + 3*time.Minute } err = waitForPodsInactive(ps, interval, timeout) if err != nil {