mirror of https://github.com/apache/cloudstack.git
CS-15592 Fixed the quiettime parameter check
This commit is contained in:
parent
4ee6ed6afb
commit
10a58fdef2
|
|
@ -405,7 +405,7 @@ public class AutoScaleManagerImpl<Type> implements AutoScaleService, Manager {
|
|||
Integer quietTime = cmd.getQuietTime();
|
||||
String action = cmd.getAction();
|
||||
|
||||
if (quietTime != null) {
|
||||
if (quietTime == null) {
|
||||
quietTime = NetUtils.DEFAULT_AUTOSCALE_POLICY_QUIET_TIME;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue