Skip to content

Commit 8b5ee64

Browse files
Jessica Wangvijayvenkat
authored andcommitted
CS-15955: cloudstack 3.0 UI - autoscale - change validation error message of comparison of scale policy duration and polling interval.
1 parent 6dddd2d commit 8b5ee64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/scripts/autoscaler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@
752752
return;
753753
}
754754
if(args.data.scaleUpDuration < args.data.interval) {
755-
args.response.error("Duration of Scale Up Policy can not be less than Polling Interval.");
755+
args.response.error("Duration of Scale Up Policy must be greater than or equal to Polling Interval.");
756756
return;
757757
}
758758
if(scaleUpData.length == 0) {
@@ -770,7 +770,7 @@
770770
return;
771771
}
772772
if(args.data.scaleDownDuration < args.data.interval) {
773-
args.response.error("Duration of Scale Down Policy can not be less than Polling Interval.");
773+
args.response.error("Duration of Scale Down Policy must be greater than or equal to Polling Interval.");
774774
return;
775775
}
776776
if(scaleDownData.length == 0) {

0 commit comments

Comments
 (0)