mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 07:20:13 +00:00
modify error return
This commit is contained in:
parent
7a4d81ea43
commit
d45dfda425
@ -691,10 +691,10 @@ func (vs *VSphere) AttachDisk(vmDiskPath string, nodeName string) (diskID string
|
||||
|
||||
scsiController = getSCSIController(vmDevices, vs.cfg.Disk.SCSIControllerType)
|
||||
if scsiController == nil {
|
||||
glog.Errorf("cannot find SCSI controller in VM - %v", err)
|
||||
glog.Errorf("cannot find SCSI controller in VM")
|
||||
// attempt clean up of scsi controller
|
||||
cleanUpController(newSCSIController, vmDevices, vm, ctx)
|
||||
return "", "", err
|
||||
return "", "", fmt.Errorf("cannot find SCSI controller in VM")
|
||||
}
|
||||
newSCSICreated = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user