We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dddd2d commit 8b5ee64Copy full SHA for 8b5ee64
1 file changed
ui/scripts/autoscaler.js
@@ -752,7 +752,7 @@
752
return;
753
}
754
if(args.data.scaleUpDuration < args.data.interval) {
755
- args.response.error("Duration of Scale Up Policy can not be less than Polling Interval.");
+ args.response.error("Duration of Scale Up Policy must be greater than or equal to Polling Interval.");
756
757
758
if(scaleUpData.length == 0) {
@@ -770,7 +770,7 @@
770
771
772
if(args.data.scaleDownDuration < args.data.interval) {
773
- args.response.error("Duration of Scale Down Policy can not be less than Polling Interval.");
+ args.response.error("Duration of Scale Down Policy must be greater than or equal to Polling Interval.");
774
775
776
if(scaleDownData.length == 0) {
0 commit comments