Merge "Do not hard-code [oslo_messaging_amqp] container_name"

This commit is contained in:
Zuul 2023-07-22 22:24:28 +00:00 committed by Gerrit Code Review
commit 0997601839
3 changed files with 8 additions and 2 deletions

View File

@ -234,7 +234,7 @@ class manila (
$amqp_server_request_prefix = $facts['os_service_default'],
$amqp_broadcast_prefix = $facts['os_service_default'],
$amqp_group_request_prefix = $facts['os_service_default'],
$amqp_container_name = 'guest',
$amqp_container_name = $facts['os_service_default'],
$amqp_idle_timeout = $facts['os_service_default'],
$amqp_trace = $facts['os_service_default'],
$amqp_ssl_ca_file = $facts['os_service_default'],

View File

@ -0,0 +1,6 @@
---
fixes:
- |
The default value of ``manila::amqp_container_name`` has been updated and
now the service default value is used by default, so that a unique value
is generated by the `oslo.meesaging` library.

View File

@ -213,7 +213,7 @@ describe 'manila' do
:server_request_prefix => '<SERVICE DEFAULT>',
:broadcast_prefix => '<SERVICE DEFAULT>',
:group_request_prefix => '<SERVICE DEFAULT>',
:container_name => 'guest',
:container_name => '<SERVICE DEFAULT>',
:idle_timeout => '<SERVICE DEFAULT>',
:trace => '<SERVICE DEFAULT>',
:ssl_ca_file => '<SERVICE DEFAULT>',