From 17023c0d60e99fe78f641531b899aebf2b5e2d50 Mon Sep 17 00:00:00 2001 From: Bharat Kumar Date: Fri, 3 Jan 2014 12:59:07 +0530 Subject: [PATCH] CLOUDSTACK-5750 Make default value of execute.in.sequence.hypervisor.commands false. Conflicts: engine/api/src/com/cloud/vm/VirtualMachineManager.java --- engine/api/src/com/cloud/vm/VirtualMachineManager.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/api/src/com/cloud/vm/VirtualMachineManager.java b/engine/api/src/com/cloud/vm/VirtualMachineManager.java index 4f4a6520971..0de5156bfdf 100644 --- a/engine/api/src/com/cloud/vm/VirtualMachineManager.java +++ b/engine/api/src/com/cloud/vm/VirtualMachineManager.java @@ -48,9 +48,10 @@ import com.cloud.utils.fsm.NoTransitionException; * Manages allocating resources to vms. */ public interface VirtualMachineManager extends Manager { + static final ConfigKey ExecuteInSequence = new ConfigKey("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";