From 68f194b14f5c4a4491c32908f350a8d38a7ff124 Mon Sep 17 00:00:00 2001 From: Devdeep Singh Date: Fri, 2 Aug 2013 13:37:07 +0530 Subject: [PATCH] CLOUDSTACK-4009: healthcheck.update.interval global config missing after upgrade. Added the parameter in the db schema file. --- setup/db/db/schema-410to420.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql index 6aa1222ec33..657d947dd71 100644 --- a/setup/db/db/schema-410to420.sql +++ b/setup/db/db/schema-410to420.sql @@ -2221,4 +2221,5 @@ CREATE TABLE `cloud_usage`.`usage_vmsnapshot` ( ALTER TABLE volumes ADD COLUMN vm_snapshot_chain_size bigint(20) unsigned; +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'healthcheck.update.interval', '600', 'Time Interval to fetch the LB health check states (in sec)'); INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Snapshots', 'DEFAULT', 'SnapshotManager', 'KVM.snapshot.enabled', 'false', 'whether snapshot is enabled for KVM hosts');