Fix density test

This commit is contained in:
Wojciech Tyczynski 2016-09-05 13:53:43 +02:00
parent 921ab5070f
commit 8c1b80c6d5

View File

@ -3367,7 +3367,7 @@ func DeleteRCAndWaitForGC(c *client.Client, ns, name string) error {
if rc.Spec.Replicas < 5000 {
timeout = 10 * time.Minute
} else {
timeout = time.Duration(rc.Spec.Replicas / gcThroughput)
timeout = time.Duration(rc.Spec.Replicas / gcThroughput) * time.Second
}
err = waitForPodsInactive(ps, interval, timeout)
if err != nil {