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
This commit is contained in:
parent
a597bf073d
commit
f02f040a12
@ -13,7 +13,6 @@ log_file = /var/log/neutron/neutron.log
|
|||||||
|
|
||||||
## Rpc all
|
## Rpc all
|
||||||
executor_thread_pool_size = {{ neutron_rpc_thread_pool_size }}
|
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 }}
|
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 %}
|
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
|
# Messaging
|
||||||
[oslo_messaging_rabbit]
|
[oslo_messaging_rabbit]
|
||||||
rabbit_use_ssl = {{ neutron_rabbitmq_use_ssl }}
|
rabbit_use_ssl = {{ neutron_rabbitmq_use_ssl }}
|
||||||
|
rpc_conn_pool_size = {{ neutron_rpc_conn_pool_size }}
|
||||||
|
|
||||||
# Notifications
|
# Notifications
|
||||||
{% if neutron_ceilometer_enabled %}
|
{% if neutron_ceilometer_enabled %}
|
||||||
|
Loading…
Reference in New Issue
Block a user