We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0242d5 commit 9de679eCopy full SHA for 9de679e
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
840
841
-- Fix Zones are returned in a random order (#3934)
842
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;
843
+
844
+-- Fix description of volume.stats.interval which is in milliseconds not seconds
845
+UPDATE `cloud`.`configuration` SET `description` = 'Interval (in milliseconds) to report volume statistics' WHERE `name` = 'volume.stats.interval';
0 commit comments