From 3a2cf48d92af2566271359b1b8bfa3b335cf54ce 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. --- engine/api/src/com/cloud/vm/VirtualMachineManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/api/src/com/cloud/vm/VirtualMachineManager.java b/engine/api/src/com/cloud/vm/VirtualMachineManager.java index d18212643d8..203a4ac9779 100644 --- a/engine/api/src/com/cloud/vm/VirtualMachineManager.java +++ b/engine/api/src/com/cloud/vm/VirtualMachineManager.java @@ -48,9 +48,9 @@ import org.apache.cloudstack.framework.config.ConfigKey; */ public interface VirtualMachineManager extends Manager { - static final ConfigKey ExecuteInSequence = new ConfigKey("Advanced", Boolean.class, "execute.in.sequence.hypervisor.commands", "true", + 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 true.", true); + + " If set to false, these commands become asynchronous. Default value is false.", false); public interface Topics {