From 507c3f280224d9b12de0f7f715689ee39805db27 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Fri, 1 Jul 2016 11:30:43 -0700 Subject: [PATCH] Remove unneeded continute very minor but I noticed and it and it bugged me :-) Signed-off-by: Doug Davis --- pkg/kubectl/cmd/run.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/kubectl/cmd/run.go b/pkg/kubectl/cmd/run.go index 6b6ca5617ab..23452c29e48 100644 --- a/pkg/kubectl/cmd/run.go +++ b/pkg/kubectl/cmd/run.go @@ -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) time.Sleep(2 * time.Second) - continue } }