From f02f040a1257d5852108df25465328d01c3878e7 Mon Sep 17 00:00:00 2001 From: Logan V Date: Sat, 6 Aug 2016 15:38:42 -0500 Subject: [PATCH] Fix oslo messaging deprecation Option "rpc_conn_pool_size" from group "DEFAULT" is deprecated. Use option "rpc_conn_pool_size" from group "oslo_messaging_rabbit". Change-Id: Ie820ece2fa6ff571818d29c219e6e841b6484630 --- templates/neutron.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/neutron.conf.j2 b/templates/neutron.conf.j2 index c0f799c8..5436c230 100644 --- a/templates/neutron.conf.j2 +++ b/templates/neutron.conf.j2 @@ -13,7 +13,6 @@ log_file = /var/log/neutron/neutron.log ## Rpc all executor_thread_pool_size = {{ neutron_rpc_thread_pool_size }} -rpc_conn_pool_size = {{ neutron_rpc_conn_pool_size }} rpc_response_timeout = {{ neutron_rpc_response_timeout }} transport_url = rabbit://{% for host in neutron_rabbitmq_servers.split(',') %}{{ neutron_rabbitmq_userid }}:{{ neutron_rabbitmq_password }}@{{ host }}:{{ neutron_rabbitmq_port }}{% if not loop.last %},{% else %}/{{ neutron_rabbitmq_vhost }}{% endif %}{% endfor %} @@ -179,6 +178,7 @@ root_helper = sudo {{ neutron_bin }}/neutron-rootwrap /etc/neutron/rootwrap.conf # Messaging [oslo_messaging_rabbit] rabbit_use_ssl = {{ neutron_rabbitmq_use_ssl }} +rpc_conn_pool_size = {{ neutron_rpc_conn_pool_size }} # Notifications {% if neutron_ceilometer_enabled %}