Commit 7e5019fe authored by Filip Grzadkowski's avatar Filip Grzadkowski

Merge pull request #9179 from piosz/load_generator

Increased failCount param in RunRC function for e2e tests.
parents a2233a6c f71baba6
...@@ -797,7 +797,7 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int) error ...@@ -797,7 +797,7 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int) error
defer podStore.Stop() defer podStore.Stop()
pods := podStore.List() pods := podStore.List()
current = len(pods) current = len(pods)
failCount := 5 failCount := 24
for same < failCount && current < replicas { for same < failCount && current < replicas {
Logf("%v Controller %s: Found %d pods out of %d", time.Now(), name, current, replicas) Logf("%v Controller %s: Found %d pods out of %d", time.Now(), name, current, replicas)
if last < current { if last < current {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment