Another attempt to fix problem with not ready endpoints in autoscaling e2e

This commit is contained in:
Piotr Szczesniak
2015-09-25 10:16:03 +02:00
parent e37e48e9f7
commit b2cc7d0ac0
2 changed files with 5 additions and 3 deletions

View File

@@ -250,7 +250,6 @@ func runServiceAndRCForResourceConsumer(c *client.Client, ns, name string, repli
},
})
expectNoError(err)
expectNoError(waitForService(c, ns, name, true, startServiceInterval, startServiceTimeout))
config := RCConfig{
Client: c,
Image: image,
@@ -262,4 +261,7 @@ func runServiceAndRCForResourceConsumer(c *client.Client, ns, name string, repli
MemLimit: memLimitMb * 1024 * 1024, // MemLimit is in bytes
}
expectNoError(RunRC(config))
// Make sure endpoints are propagated.
// TODO(piosz): replace sleep with endpoints watch.
time.Sleep(10 * time.Second)
}