Merge "Drop redundant hardcoded defaults of amqp options"
This commit is contained in:
commit
61ae2c64e6
@ -231,12 +231,12 @@ class manila (
|
|||||||
$rootwrap_config = '/etc/manila/rootwrap.conf',
|
$rootwrap_config = '/etc/manila/rootwrap.conf',
|
||||||
$state_path = '/var/lib/manila',
|
$state_path = '/var/lib/manila',
|
||||||
$lock_path = $::manila::params::lock_path,
|
$lock_path = $::manila::params::lock_path,
|
||||||
$amqp_server_request_prefix = 'exclusive',
|
$amqp_server_request_prefix = $facts['os_service_default'],
|
||||||
$amqp_broadcast_prefix = 'broadcast',
|
$amqp_broadcast_prefix = $facts['os_service_default'],
|
||||||
$amqp_group_request_prefix = 'unicast',
|
$amqp_group_request_prefix = $facts['os_service_default'],
|
||||||
$amqp_container_name = 'guest',
|
$amqp_container_name = 'guest',
|
||||||
$amqp_idle_timeout = '0',
|
$amqp_idle_timeout = $facts['os_service_default'],
|
||||||
$amqp_trace = false,
|
$amqp_trace = $facts['os_service_default'],
|
||||||
$amqp_ssl_ca_file = $facts['os_service_default'],
|
$amqp_ssl_ca_file = $facts['os_service_default'],
|
||||||
$amqp_ssl_cert_file = $facts['os_service_default'],
|
$amqp_ssl_cert_file = $facts['os_service_default'],
|
||||||
$amqp_ssl_key_file = $facts['os_service_default'],
|
$amqp_ssl_key_file = $facts['os_service_default'],
|
||||||
|
@ -210,12 +210,12 @@ describe 'manila' do
|
|||||||
end
|
end
|
||||||
|
|
||||||
it { is_expected.to contain_oslo__messaging__amqp('manila_config').with(
|
it { is_expected.to contain_oslo__messaging__amqp('manila_config').with(
|
||||||
:server_request_prefix => 'exclusive',
|
:server_request_prefix => '<SERVICE DEFAULT>',
|
||||||
:broadcast_prefix => 'broadcast',
|
:broadcast_prefix => '<SERVICE DEFAULT>',
|
||||||
:group_request_prefix => 'unicast',
|
:group_request_prefix => '<SERVICE DEFAULT>',
|
||||||
:container_name => 'guest',
|
:container_name => 'guest',
|
||||||
:idle_timeout => '0',
|
:idle_timeout => '<SERVICE DEFAULT>',
|
||||||
:trace => 'false',
|
:trace => '<SERVICE DEFAULT>',
|
||||||
:ssl_ca_file => '<SERVICE DEFAULT>',
|
:ssl_ca_file => '<SERVICE DEFAULT>',
|
||||||
:ssl_cert_file => '<SERVICE DEFAULT>',
|
:ssl_cert_file => '<SERVICE DEFAULT>',
|
||||||
:ssl_key_file => '<SERVICE DEFAULT>',
|
:ssl_key_file => '<SERVICE DEFAULT>',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user