Skip to content

Commit

Permalink
Merge pull request #1681 from alexpilotti/master
Browse files Browse the repository at this point in the history
Add message before waiting for the VM IP address
  • Loading branch information
aaron-prindle committed Jul 10, 2017
2 parents 8a87cc9 + 2298c93 commit 0fa8b92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@ func runStart(cmd *cobra.Command, args []string) {
cmdUtil.MaybeReportErrorAndExit(err)
}

fmt.Println("Getting VM IP address...")
ip, err := host.Driver.GetIP()
if err != nil {
glog.Errorln("Error starting host: ", err)
glog.Errorln("Error getting VM IP address: ", err)
cmdUtil.MaybeReportErrorAndExit(err)
}
kubernetesConfig := cluster.KubernetesConfig{
Expand Down

0 comments on commit 0fa8b92

Please sign in to comment.