Merge pull request #32265 from lojies/errmodify
Automatic merge from submit-queue
modify error return
err is nil here,chage it to fmt.Errorf("cannot find SCSI controller in VM")
			
			
This commit is contained in:
		@@ -695,10 +695,10 @@ func (vs *VSphere) AttachDisk(vmDiskPath string, nodeName string) (diskID string
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		scsiController = getSCSIController(vmDevices, vs.cfg.Disk.SCSIControllerType)
 | 
							scsiController = getSCSIController(vmDevices, vs.cfg.Disk.SCSIControllerType)
 | 
				
			||||||
		if scsiController == nil {
 | 
							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
 | 
								// attempt clean up of scsi controller
 | 
				
			||||||
			cleanUpController(newSCSIController, vmDevices, vm, ctx)
 | 
								cleanUpController(newSCSIController, vmDevices, vm, ctx)
 | 
				
			||||||
			return "", "", err
 | 
								return "", "", fmt.Errorf("cannot find SCSI controller in VM")
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		newSCSICreated = true
 | 
							newSCSICreated = true
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user