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

This commit is contained in:
Bharat Kumar 2014-01-03 12:59:07 +05:30 committed by Kishan Kavala
parent 2b2d5998d7
commit 3a2cf48d92
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ import org.apache.cloudstack.framework.config.ConfigKey;
*/
public interface VirtualMachineManager extends Manager {
static final ConfigKey<Boolean> ExecuteInSequence = new ConfigKey<Boolean>("Advanced", Boolean.class, "execute.in.sequence.hypervisor.commands", "true",
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 true.", true);
+ " If set to false, these commands become asynchronous. Default value is false.", false);
public interface Topics {