Merge "Correct notification driver"

This commit is contained in:
Zuul 2019-02-13 03:27:29 +00:00 committed by Gerrit Code Review
commit 150013a9cf
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ enable_proxy_headers_parsing = True
# Ceilometer options
[oslo_messaging_notifications]
driver = {% if heat_ceilometer_enabled %}messagingv2{% else %}noop{% endif %}
driver = {{ (heat_ceilometer_enabled | bool) | ternary('messagingv2', 'noop') }}
transport_url = {{ heat_oslomsg_notify_transport }}://{% for host in heat_oslomsg_notify_servers.split(',') %}{{ heat_oslomsg_notify_userid }}:{{ heat_oslomsg_notify_password }}@{{ host }}:{{ heat_oslomsg_notify_port }}{% if not loop.last %},{% else %}/{{ heat_oslomsg_notify_vhost }}{% if heat_oslomsg_notify_use_ssl | bool %}?ssl=1{% else %}?ssl=0{% endif %}{% endif %}{% endfor %}