Commit adf28c64 authored by yanxuean's avatar yanxuean

missing the format string

parent 0ee76d02
...@@ -194,7 +194,7 @@ var _ = framework.KubeDescribe("[Feature:Example]", func() { ...@@ -194,7 +194,7 @@ var _ = framework.KubeDescribe("[Feature:Example]", func() {
forEachPod(selectorKey, selectorValue, func(pod v1.Pod) { forEachPod(selectorKey, selectorValue, func(pod v1.Pod) {
_, maErr := framework.LookForStringInLog(f.Namespace.Name, pod.Name, "spark-master", "Starting Spark master at", serverStartTimeout) _, maErr := framework.LookForStringInLog(f.Namespace.Name, pod.Name, "spark-master", "Starting Spark master at", serverStartTimeout)
if maErr != nil { if maErr != nil {
framework.Failf("Didn't find target string. error:", maErr) framework.Failf("Didn't find target string. error: %v", maErr)
} }
}) })
} }
......
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