From e9ca25fb039791f7c8d079905602dd9eb27a065d Mon Sep 17 00:00:00 2001 From: Radoslaw Smigielski Date: Sun, 17 May 2020 18:37:23 +0100 Subject: [PATCH] Fix missing cluster name in output of status command --- cmd/minikube/cmd/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/minikube/cmd/status.go b/cmd/minikube/cmd/status.go index 7631b9b76e..c19983e1c1 100644 --- a/cmd/minikube/cmd/status.go +++ b/cmd/minikube/cmd/status.go @@ -120,8 +120,8 @@ var statusCmd = &cobra.Command{ statuses = append(statuses, st) } else { for _, n := range cc.Nodes { - glog.Infof("checking status of %s ...", n.Name) machineName := driver.MachineName(*cc, n) + glog.Infof("checking status of %s ...", machineName) st, err := status(api, *cc, n) glog.Infof("%s status: %+v", machineName, st)