mirror of https://github.com/apache/cloudstack.git
Temporary relaxing serialization for for Start/Stop/Destroy commands.
This commit is contained in:
parent
9eaacdcc70
commit
8a50f9f7ca
|
|
@ -106,7 +106,8 @@ public class StartCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public int getCpu() {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,8 @@ public class StartConsoleProxyCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public ConsoleProxyVO getProxy() {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,8 @@ public class StartRouterCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public StartRouterCommand(DomainRouterVO router, String routerName, String[] storageIps, List<VolumeVO> vols, boolean mirroredVols) {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,8 @@ public class StartSecStorageVmCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public SecondaryStorageVmVO getSecondaryStorageVmVO() {
|
||||
|
|
|
|||
|
|
@ -59,7 +59,8 @@ public class StopCommand extends RebootCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isMirroredVolumes() {
|
||||
|
|
|
|||
|
|
@ -65,7 +65,8 @@ public class CreateCommand extends Command {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
|
||||
public String getTemplateUrl() {
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ public class DestroyCommand extends StorageCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ public class PrimaryStorageDownloadCommand extends AbstractDownloadCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue