Merge "Deprecate rpc_backend option"

This commit is contained in:
Jenkins 2017-06-08 10:06:03 +00:00 committed by Gerrit Code Review
commit 45b8555546
3 changed files with 5 additions and 2 deletions

View File

@ -54,7 +54,6 @@ sahara_system_user_home: "/var/lib/{{ sahara_system_user_name }}"
sahara_engine_host: "{{ internal_lb_vip_address }}"
## RabbitMQ info
sahara_rpc_backend: sahara.openstack.common.rpc.impl_kombu
sahara_rabbitmq_userid: sahara
sahara_rabbitmq_vhost: /sahara
sahara_rabbitmq_use_ssl: False

View File

@ -0,0 +1,5 @@
---
deprecations:
- |
Remove ``sahara_rpc_backend`` option due to deprecation of
rpc_backend option in oslo.messaging.

View File

@ -25,7 +25,6 @@ proxy_user_role_names = {{ sahara_proxy_user_role_names }}
{% endif %}
## RPC Backend
rpc_backend = {{ sahara_rpc_backend }}
transport_url = rabbit://{% for host in sahara_rabbitmq_servers.split(',') %}{{ sahara_rabbitmq_userid }}:{{ sahara_rabbitmq_password }}@{{ host }}:{{ sahara_rabbitmq_port }}{% if not loop.last %},{% else %}/{{ sahara_rabbitmq_vhost }}{% endif %}{% endfor %}