CLOUDSTACK-5750 Make default value of execute.in.sequence.hypervisor.commands false.

Conflicts:
	engine/api/src/com/cloud/vm/VirtualMachineManager.java
This commit is contained in:
Bharat Kumar 2014-01-03 12:59:07 +05:30 committed by Kishan Kavala
parent 3116f51a26
commit 17023c0d60
1 changed files with 3 additions and 2 deletions

View File

@ -48,9 +48,10 @@ import com.cloud.utils.fsm.NoTransitionException;
* Manages allocating resources to vms.
*/
public interface VirtualMachineManager extends Manager {
static final ConfigKey<Boolean> ExecuteInSequence = new ConfigKey<Boolean>("Advanced", Boolean.class, "execute.in.sequence.hypervisor.commands", "false",
"If set to true, StartCommand, StopCommand, CopyCommand, MigrateCommand will be synchronized on the agent side."
+ " If set to false, these commands become asynchronous. Default value is false.", true);
"If set to true, StartCommand, StopCommand, CopyCommand, MigrateCommand will be synchronized on the agent side."
+ " If set to false, these commands become asynchronous. Default value is false.", false);
public interface Topics {
public static final String VM_POWER_STATE = "vm.powerstate";