Merge pull request #8184 from radeksm/bugfix/cluster_name_in_status
Fix missing cluster node names in output of status commandpull/8446/head
commit
ff86a552bf
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue