mirror of https://github.com/apache/cloudstack.git
Reverted relaxed serialization for start/create commands as stress test didn't pass for non-serialized version of the commands.
This commit is contained in:
parent
c5d0d806b4
commit
b0b16675fa
|
|
@ -97,7 +97,7 @@ public class SnapshotCommand extends Command {
|
|||
*/
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -106,8 +106,7 @@ public class StartCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public int getCpu() {
|
||||
|
|
|
|||
|
|
@ -54,9 +54,8 @@ public class StartConsoleProxyCommand extends AbstractStartCommand {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public ConsoleProxyVO getProxy() {
|
||||
|
|
|
|||
|
|
@ -37,8 +37,7 @@ public class StartRouterCommand extends AbstractStartCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public StartRouterCommand(DomainRouterVO router, int networkRateMbps, int networkRateMulticastMbps,
|
||||
|
|
|
|||
|
|
@ -53,9 +53,8 @@ public class StartSecStorageVmCommand extends AbstractStartCommand {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
public boolean executeInSequence() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public SecondaryStorageVmVO getSecondaryStorageVmVO() {
|
||||
|
|
|
|||
|
|
@ -59,8 +59,7 @@ public class StopCommand extends RebootCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean isMirroredVolumes() {
|
||||
|
|
|
|||
|
|
@ -65,8 +65,7 @@ public class CreateCommand extends Command {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public String getTemplateUrl() {
|
||||
|
|
|
|||
|
|
@ -42,7 +42,6 @@ public class DestroyCommand extends StorageCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -56,7 +56,6 @@ public class PrimaryStorageDownloadCommand extends AbstractDownloadCommand {
|
|||
|
||||
@Override
|
||||
public boolean executeInSequence() {
|
||||
//Temporary relaxing serialization
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue