mirror of https://github.com/apache/cloudstack.git
Revert "Rollback of changes with errors during the VM assign (#7061)"
This reverts commit d9a7b6e511.
This commit is contained in:
parent
011fced91e
commit
734ce3cfa9
|
|
@ -469,7 +469,7 @@ public interface UserVmService {
|
|||
VirtualMachine migrateVirtualMachineWithVolume(Long vmId, Host destinationHost, Map<String, String> volumeToPool) throws ResourceUnavailableException,
|
||||
ConcurrentOperationException, ManagementServerException, VirtualMachineMigrationException;
|
||||
|
||||
UserVm moveVmToUser(AssignVMCmd moveUserVMCmd) throws ResourceAllocationException, ConcurrentOperationException, ResourceUnavailableException,
|
||||
UserVm moveVMToUser(AssignVMCmd moveUserVMCmd) throws ResourceAllocationException, ConcurrentOperationException, ResourceUnavailableException,
|
||||
InsufficientCapacityException;
|
||||
|
||||
VirtualMachine vmStorageMigration(Long vmId, StoragePool destPool);
|
||||
|
|
|
|||
|
|
@ -120,16 +120,27 @@ public class AssignVMCmd extends BaseCmd {
|
|||
@Override
|
||||
public void execute() {
|
||||
try {
|
||||
UserVm userVm = _userVmService.moveVmToUser(this);
|
||||
UserVm userVm = _userVmService.moveVMToUser(this);
|
||||
if (userVm == null) {
|
||||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to move vm");
|
||||
}
|
||||
UserVmResponse response = _responseGenerator.createUserVmResponse(ResponseView.Full, "virtualmachine", userVm).get(0);
|
||||
response.setResponseName(getCommandName());
|
||||
setResponseObject(response);
|
||||
} catch (InvalidParameterValueException e){
|
||||
e.printStackTrace();
|
||||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, e.getMessage());
|
||||
} catch (Exception e) {
|
||||
ApiErrorCode errorCode = e instanceof InvalidParameterValueException ? ApiErrorCode.PARAM_ERROR : ApiErrorCode.INTERNAL_ERROR;
|
||||
String msg = String.format("Failed to move VM [%s].", getVmId());
|
||||
logger.error(msg, e);
|
||||
throw new ServerApiException(errorCode, msg);
|
||||
logger.error("Failed to move vm due to: " + e.getStackTrace());
|
||||
if (e.getMessage() != null) {
|
||||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to move vm due to " + e.getMessage());
|
||||
} else if (e.getCause() != null) {
|
||||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to move vm due to " + e.getCause());
|
||||
} else {
|
||||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to move vm");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -477,7 +477,7 @@ public class UserVmManagerTest {
|
|||
CallContext.register(user, caller);
|
||||
try {
|
||||
|
||||
_userVmMgr.moveVmToUser(cmd);
|
||||
_userVmMgr.moveVMToUser(cmd);
|
||||
} finally {
|
||||
CallContext.unregister();
|
||||
}
|
||||
|
|
@ -527,7 +527,7 @@ public class UserVmManagerTest {
|
|||
when(_accountMgr.isRootAdmin(anyLong())).thenReturn(true);
|
||||
|
||||
try {
|
||||
_userVmMgr.moveVmToUser(cmd);
|
||||
_userVmMgr.moveVMToUser(cmd);
|
||||
} finally {
|
||||
CallContext.unregister();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue