CS-15592 Fixed the quiettime parameter check

This commit is contained in:
Deepak Garg 2012-07-16 12:45:22 +05:30 committed by Vijay
parent 4ee6ed6afb
commit 10a58fdef2
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}