Merge "Correct notification driver"

This commit is contained in:
Zuul 2019-02-12 22:20:19 +00:00 committed by Gerrit Code Review
commit 0e922fcf55
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ rabbit_notification_exchange = designate
rabbit_notification_topic = notifications
[oslo_messaging_notifications]
driver = {% if designate_ceilometer_enabled %}messagingv2{% else %}noop{% endif %}
driver = {{ (designate_ceilometer_enabled | bool) | ternary('messagingv2', 'noop') }}
transport_url = {{ designate_oslomsg_notify_transport }}://{% for host in designate_oslomsg_notify_servers.split(',') %}{{ designate_oslomsg_notify_userid }}:{{ designate_oslomsg_notify_password }}@{{ host }}:{{ designate_oslomsg_notify_port }}{% if not loop.last %},{% else %}/{{ designate_oslomsg_notify_vhost }}{% if designate_oslomsg_notify_use_ssl | bool %}?ssl=1{% else %}?ssl=0{% endif %}{% endif %}{% endfor %}
########################