CLOUDSTACK-10031: change default configuration for router.aggregation.command.each.timeout from 3 to 600 seconds (#2223)

Change default configuration for router.aggregation.command.each.timeout from 3 to 600 seconds (#2223)
This commit is contained in:
Sigert Goeminne 2017-08-11 12:26:24 +02:00 committed by Rohit Yadav
parent 3f330a2199
commit 17bc6afc82
2 changed files with 3 additions and 1 deletions

View File

@ -1927,7 +1927,7 @@ public enum Config {
NetworkOrchestrationService.class,
Integer.class,
"router.aggregation.command.each.timeout",
"3",
"600",
"timeout in seconds for each Virtual Router command being aggregated. The final aggregation command timeout would be determined by this timeout * commands counts ",
null),

View File

@ -121,3 +121,5 @@ CREATE VIEW `template_view` AS
LEFT JOIN `resource_tags` ON (((`resource_tags`.`resource_id` = `vm_template`.`id`)
AND ((`resource_tags`.`resource_type` = 'Template')
OR (`resource_tags`.`resource_type` = 'ISO')))));
UPDATE `cloud`.`configuration` SET value = '600', default_value = '600' WHERE category = 'Advanced' AND name = 'router.aggregation.command.each.timeout';