Skip to content

Commit 9de679e

Browse files
authored
db: Fix description of volume.stats.interval which is in milliseconds not seconds (#4526)
1 parent e0242d5 commit 9de679e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -840,3 +840,6 @@ ALTER TABLE `cloud_usage`.`cloud_usage` ADD COLUMN `is_hidden` smallint(1) NOT N
840840

841841
-- Fix Zones are returned in a random order (#3934)
842842
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

Comments
 (0)