mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5750 Make default value of execute.in.sequence.hypervisor.commands false.
This commit is contained in:
parent
2b2d5998d7
commit
3a2cf48d92
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue