Merge "Fix incorrect desc of rabbit_stream_fanout option"

This commit is contained in:
Zuul 2024-03-27 20:08:09 +00:00 committed by Gerrit Code Review
commit 986cd4ab24
1 changed files with 5 additions and 5 deletions

View File

@ -254,11 +254,11 @@ rabbit_opts = [
cfg.BoolOpt('rabbit_stream_fanout', cfg.BoolOpt('rabbit_stream_fanout',
default=False, default=False,
help='Use stream queues in RabbitMQ (x-queue-type: stream). ' help='Use stream queues in RabbitMQ (x-queue-type: stream). '
'The stream queue is a modern queue type for RabbitMQ ' 'Streams are a new persistent and replicated data structure '
'implementing a durable, replicated FIFO queue based on the ' '("queue type") in RabbitMQ which models an append-only log '
'Raft consensus algorithm. It is available as of ' 'with non-destructive consumer semantics. It is available '
'RabbitMQ 3.8.0. If set this option will replace all fanout ' 'as of RabbitMQ 3.9.0. If set this option will replace all '
'queues with only one stream queue.'), 'fanout queues with only one stream queue.'),
] ]
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)