diff --git a/test/framework/log/collector.go b/test/framework/log/collector.go index fd0e53d324..bcf63aa3fd 100644 --- a/test/framework/log/collector.go +++ b/test/framework/log/collector.go @@ -94,12 +94,12 @@ func (c *MachineLogCollector) CollectInfrastructureLogs(_ context.Context, _ cli } func (c *MachineLogCollector) machineIPAddresses(ctx context.Context, m *clusterv1.Machine) ([]string, error) { - for _, address := range m.Status.Addresses { - if address.Type != clusterv1.MachineExternalIP { - continue - } - return []string{address.Address}, nil - } + // for _, address := range m.Status.Addresses { + // if address.Type != clusterv1.MachineExternalIP { + // continue + // } + // return []string{address.Address}, nil + // } vmObj, err := c.Finder.VirtualMachine(ctx, m.GetName()) if err != nil {