Merge pull request #28375 from duglin/removeContinue

Automatic merge from submit-queue

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:
k8s-merge-robot 2016-07-07 11:36:13 -07:00 committed by GitHub
commit 569008809f

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)
time.Sleep(2 * time.Second)
continue
}
}