Fix a formatting string.

This commit is contained in:
Brendan Burns 2016-10-08 14:14:55 -07:00
parent e10f12278c
commit 8ddde326a0

View File

@ -575,8 +575,8 @@ func waitForAllCaPodsReadyInNamespace(f *framework.Framework, c *client.Client)
glog.Infof("Some pods are not ready yet: %v", notready)
}
glog.Info("Timeout on waiting for pods being ready")
glog.Info(framework.RunKubectlOrDie("get", "pods", "-o json", "--all-namespaces"))
glog.Info(framework.RunKubectlOrDie("get", "nodes", "-o json"))
glog.Info(framework.RunKubectlOrDie("get", "pods", "-o", "json", "--all-namespaces"))
glog.Info(framework.RunKubectlOrDie("get", "nodes", "-o", "json"))
// Some pods are still not running.
return fmt.Errorf("Some pods are still not running: %v", notready)