From 10ebbf7694e8f9328c93d755a392a0d4787bae78 Mon Sep 17 00:00:00 2001 From: Vijayendra Bhamidipati Date: Wed, 22 Aug 2012 15:35:34 -0700 Subject: [PATCH] CS-16121: 3.0.2 to 3.0.5 Upgrade: "ha.workers" configuration parameter is missing in the Global Configuration Parameters List of the Upgraded Setup Reviewed-by: Edison Su Description: Adding ha.workers to list of global configuration parameters for the management server. --- setup/db/db/schema-304to305.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/db/db/schema-304to305.sql b/setup/db/db/schema-304to305.sql index d079731b3fa..8b63b3f0a31 100755 --- a/setup/db/db/schema-304to305.sql +++ b/setup/db/db/schema-304to305.sql @@ -376,7 +376,8 @@ UPDATE `cloud`.`configuration` SET description='Comma separated list of cidrs in INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Network', 'DEFAULT', 'management-server', 'site2site.vpn.vpngateway.connection.limit', '4', 'The maximum number of VPN connection per VPN gateway'); INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Network', 'DEFAULT', 'management-server', 'site2site.vpn.customergateway.subnets.limit', '10', 'The maximum number of subnets per customer gateway'); INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Usage', 'DEFAULT', 'management-server', 'traffic.sentinel.include.zones', 'EXTERNAL', 'Traffic going into specified list of zones is metered. For metering all traffic leave this parameter empty'); -INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Usage', 'DEFAULT', 'management-server', 'traffic.sentinel.exclude.zones', '', 'Traffic going into specified list of zones is not metered'); +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Usage', 'DEFAULT', 'management-server', 'traffic.sentinel.exclude.zones', '', 'Traffic going into specified list of zones is not metered'); +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'ha.workers', '5', 'Number of ha worker threads'); DROP TABLE IF EXISTS `cloud`.`ovs_tunnel_account`; UPDATE `cloud`.`snapshots` set swift_id=null where swift_id=0;