Skip to content

Commit 17023c0

Browse files
bvbharatKishan Kavala
authored andcommitted
CLOUDSTACK-5750 Make default value of execute.in.sequence.hypervisor.commands false.
Conflicts: engine/api/src/com/cloud/vm/VirtualMachineManager.java
1 parent 3116f51 commit 17023c0

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

engine/api/src/com/cloud/vm/VirtualMachineManager.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@
4848
* Manages allocating resources to vms.
4949
*/
5050
public interface VirtualMachineManager extends Manager {
51+
5152
static final ConfigKey<Boolean> ExecuteInSequence = new ConfigKey<Boolean>("Advanced", Boolean.class, "execute.in.sequence.hypervisor.commands", "false",
52-
"If set to true, StartCommand, StopCommand, CopyCommand, MigrateCommand will be synchronized on the agent side."
53-
+ " If set to false, these commands become asynchronous. Default value is false.", true);
53+
"If set to true, StartCommand, StopCommand, CopyCommand, MigrateCommand will be synchronized on the agent side."
54+
+ " If set to false, these commands become asynchronous. Default value is false.", false);
5455

5556
public interface Topics {
5657
public static final String VM_POWER_STATE = "vm.powerstate";

0 commit comments

Comments
 (0)