Remove unneeded continute

very minor but I noticed and it and it bugged me :-)

Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
Doug Davis
2016-07-01 11:30:43 -07:00
parent 8cabbcbdcf
commit 507c3f2802

View File

@@ -326,7 +326,6 @@ func waitForPodRunning(c *client.Client, pod *api.Pod, out io.Writer) (status ap
} }
fmt.Fprintf(out, "Waiting for pod %s/%s to be running, status is %s, pod ready: %v\n", pod.Namespace, pod.Name, pod.Status.Phase, ready) fmt.Fprintf(out, "Waiting for pod %s/%s to be running, status is %s, pod ready: %v\n", pod.Namespace, pod.Name, pod.Status.Phase, ready)
time.Sleep(2 * time.Second) time.Sleep(2 * time.Second)
continue
} }
} }