This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/master by this push:
new 9de679ea1c db: Fix description of volume.stats.interval which is in
milliseconds not seconds (#4526)
9de679ea1c is described below
commit 9de679ea1c8b925ab6bee70c3e3a4b4ee1494af5
Author: Wei Zhou <[email protected]>
AuthorDate: Thu Dec 10 10:02:16 2020 +0100
db: Fix description of volume.stats.interval which is in milliseconds not
seconds (#4526)
---
engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
b/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
index 8098131..9ead785 100644
--- a/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
+++ b/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
@@ -840,3 +840,6 @@ ALTER TABLE `cloud_usage`.`cloud_usage` ADD COLUMN
`is_hidden` smallint(1) NOT N
-- Fix Zones are returned in a random order (#3934)
UPDATE `cloud`.`data_center` JOIN (SELECT COUNT(1) AS count FROM
`cloud`.`data_center` WHERE `sort_key` != 0) AS tbl_tmp SET `sort_key` = `id`
WHERE count = 0;
+
+-- Fix description of volume.stats.interval which is in milliseconds not
seconds
+UPDATE `cloud`.`configuration` SET `description` = 'Interval (in milliseconds)
to report volume statistics' WHERE `name` = 'volume.stats.interval';