Commit 8ddde326 authored by Brendan Burns's avatar Brendan Burns

Fix a formatting string.

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