Expose rabbit_transient_quorum_queue
Depends-on: https://review.opendev.org/911021 Change-Id: Iea72a6726e05d43be5ba4ee8762457381bfa183c
This commit is contained in:
parent
b816669b3e
commit
14ef013ded
@ -102,6 +102,10 @@
|
|||||||
# (Optional) Use quorum queues in RabbitMQ.
|
# (Optional) Use quorum queues in RabbitMQ.
|
||||||
# Defaults to $facts['os_service_default']
|
# Defaults to $facts['os_service_default']
|
||||||
#
|
#
|
||||||
|
# [*rabbit_transient_quorum_queue*]
|
||||||
|
# (Optional) Use quorum queues for transients queues in RabbitMQ.
|
||||||
|
# Defaults to $facts['os_service_default']
|
||||||
|
#
|
||||||
# [*rabbit_quorum_delivery_limit*]
|
# [*rabbit_quorum_delivery_limit*]
|
||||||
# (Optional) Each time a message is rdelivered to a consumer, a counter is
|
# (Optional) Each time a message is rdelivered to a consumer, a counter is
|
||||||
# incremented. Once the redelivery count exceeds the delivery limit
|
# incremented. Once the redelivery count exceeds the delivery limit
|
||||||
@ -300,6 +304,7 @@ class trove(
|
|||||||
$rabbit_heartbeat_rate = $facts['os_service_default'],
|
$rabbit_heartbeat_rate = $facts['os_service_default'],
|
||||||
$rabbit_heartbeat_in_pthread = $facts['os_service_default'],
|
$rabbit_heartbeat_in_pthread = $facts['os_service_default'],
|
||||||
$rabbit_quorum_queue = $facts['os_service_default'],
|
$rabbit_quorum_queue = $facts['os_service_default'],
|
||||||
|
$rabbit_transient_quorum_queue = $facts['os_service_default'],
|
||||||
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
||||||
$rabbit_quorum_max_memory_length = $facts['os_service_default'],
|
$rabbit_quorum_max_memory_length = $facts['os_service_default'],
|
||||||
$rabbit_quorum_max_memory_bytes = $facts['os_service_default'],
|
$rabbit_quorum_max_memory_bytes = $facts['os_service_default'],
|
||||||
@ -444,6 +449,7 @@ class trove(
|
|||||||
kombu_ssl_keyfile => $kombu_ssl_keyfile,
|
kombu_ssl_keyfile => $kombu_ssl_keyfile,
|
||||||
kombu_ssl_version => $kombu_ssl_version,
|
kombu_ssl_version => $kombu_ssl_version,
|
||||||
rabbit_quorum_queue => $rabbit_quorum_queue,
|
rabbit_quorum_queue => $rabbit_quorum_queue,
|
||||||
|
rabbit_transient_quorum_queue => $rabbit_transient_quorum_queue,
|
||||||
rabbit_quorum_delivery_limit => $rabbit_quorum_delivery_limit,
|
rabbit_quorum_delivery_limit => $rabbit_quorum_delivery_limit,
|
||||||
rabbit_quorum_max_memory_length => $rabbit_quorum_max_memory_length,
|
rabbit_quorum_max_memory_length => $rabbit_quorum_max_memory_length,
|
||||||
rabbit_quorum_max_memory_bytes => $rabbit_quorum_max_memory_bytes,
|
rabbit_quorum_max_memory_bytes => $rabbit_quorum_max_memory_bytes,
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new ``trove::rabbit_transient_quorum_queue`` parameter has been added.
|
@ -69,6 +69,7 @@ describe 'trove' do
|
|||||||
:kombu_ssl_keyfile => '<SERVICE DEFAULT>',
|
:kombu_ssl_keyfile => '<SERVICE DEFAULT>',
|
||||||
:kombu_ssl_version => '<SERVICE DEFAULT>',
|
:kombu_ssl_version => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_queue => '<SERVICE DEFAULT>',
|
:rabbit_quorum_queue => '<SERVICE DEFAULT>',
|
||||||
|
:rabbit_transient_quorum_queue => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_delivery_limit => '<SERVICE DEFAULT>',
|
:rabbit_quorum_delivery_limit => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_max_memory_length => '<SERVICE DEFAULT>',
|
:rabbit_quorum_max_memory_length => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_max_memory_bytes => '<SERVICE DEFAULT>',
|
:rabbit_quorum_max_memory_bytes => '<SERVICE DEFAULT>',
|
||||||
|
Loading…
Reference in New Issue
Block a user