Merge "Fix trove failed to connect rabbitmq - durable queues support"

This commit is contained in:
Zuul 2024-01-11 14:13:45 +00:00 committed by Gerrit Code Review
commit 781e3949f4
2 changed files with 13 additions and 0 deletions
ansible/roles/trove/templates
releasenotes/notes

@ -4,3 +4,9 @@ control_exchange = trove
root_grant = ALL
root_grant_option = True
debug = {{ trove_logging_debug }}
[oslo_messaging_rabbit]
heartbeat_in_pthread = false
{% if om_enable_rabbitmq_high_availability | bool %}
amqp_durable_queues = true
{% endif %}

@ -0,0 +1,7 @@
---
fixes:
- |
Fix a trove deployment bug where trove guest-agent failed to connect
to RabbitMQ due to the missing of the `oslo_messaging_rabbit` config in
`guest-agent.conf`.
see `bug 2048822 <https://bugs.launchpad.net/kolla-ansible/+bug/2048822>`__