Use default value of kombu_reconnect_delay for all services

Current reconnection time is 5.0 which is pretty long.
This patch switches kombu_reconnect_delay to its default
value - 1.0 which is the same for all services.

Change-Id: I8e0230bf48620a8b5e1d7339e419b9b682e5cbd8
Closes-bug: #1560097
Closes-Bug: #1440134
This commit is contained in:
Alexey Deryugin 2016-05-16 17:14:12 +03:00
parent 85536fadc8
commit 234335f3cb
3 changed files with 0 additions and 7 deletions

View File

@ -109,9 +109,6 @@ class openstack::cinder(
database_idle_timeout => $idle_timeout,
control_exchange => 'cinder',
}
cinder_config {
'DEFAULT/kombu_reconnect_delay': value => '5.0';
}
}
'qpid': {
$rpc_backend = 'cinder.openstack.common.rpc.impl_qpid'

View File

@ -175,9 +175,6 @@ class openstack::glance (
# but we pass it as a amqp_hosts string of 'node:port, node:port' in Fuel
if !is_array($rabbit_hosts) {
$rabbit_hosts_real = split($rabbit_hosts, ',')
glance_api_config {
'DEFAULT/kombu_reconnect_delay': value => 5.0;
}
} else {
$rabbit_hosts_real = $rabbit_hosts
}

View File

@ -163,7 +163,6 @@ class openstack::network (
rabbit_hosts => $amqp_hosts,
rabbit_port => $amqp_port,
rabbit_password => $amqp_password,
kombu_reconnect_delay => '5.0',
network_device_mtu => $net_mtu,
}