Fix formating of time output in waitForPodCondition

This commit is contained in:
Satnam Singh 2015-03-06 11:25:04 -08:00
parent 3835e0e6e6
commit 2685617a41

View File

@ -70,9 +70,9 @@ func waitForPodCondition(c *client.Client, ns, podName, desc string, condition p
if done { if done {
return err return err
} }
Logf("Waiting for pod %s status to be %q (found %q) (%d secs)", podName, api.PodRunning, pod.Status.Phase, time.Since(start).Seconds()) Logf("Waiting for pod %s status to be %q (found %q) (%.2f seconds)", podName, api.PodRunning, pod.Status.Phase, time.Since(start).Seconds())
} }
return fmt.Errorf("gave up waiting for pod %s to be %s after %v", podName, desc, podStartTimeout) return fmt.Errorf("gave up waiting for pod %s to be %s after %.2f seconds", podName, desc, podStartTimeout.Seconds())
} }
func waitForPodRunning(c *client.Client, podName string) error { func waitForPodRunning(c *client.Client, podName string) error {