From ef1a7dd2c70ec87e583285dd6a12cb88783b3d3b Mon Sep 17 00:00:00 2001 From: Matus Valo Date: Wed, 9 Jun 2021 15:15:32 +0000 Subject: Small fixes in documentation --- kombu/transport/azureservicebus.py | 17 +++++------------ kombu/transport/virtual/base.py | 1 + 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/kombu/transport/azureservicebus.py b/kombu/transport/azureservicebus.py index 994485c2..438ee440 100644 --- a/kombu/transport/azureservicebus.py +++ b/kombu/transport/azureservicebus.py @@ -39,19 +39,12 @@ Connection string has the following format: Transport Options ================= -* ``queue_name_prefix`` - String prefix to prepend to queue names in - a service bus namespace. -* ``wait_time_seconds`` - Number of seconds to wait to receive messages. - Default ``5`` -* ``peek_lock_seconds`` - Number of seconds the message is visible for before - it is requeued -and sent to another consumer. Default ``60`` -* ``uamqp_keep_alive_interval`` - Interval in seconds the Azure uAMQP library - should send keepalive messages. - Default ``30`` +* ``queue_name_prefix`` - String prefix to prepend to queue names in a service bus namespace. +* ``wait_time_seconds`` - Number of seconds to wait to receive messages. Default ``5`` +* ``peek_lock_seconds`` - Number of seconds the message is visible for before it is requeued and sent to another consumer. Default ``60`` +* ``uamqp_keep_alive_interval`` - Interval in seconds the Azure uAMQP library should send keepalive messages. Default ``30`` * ``retry_total`` - Azure SDK retry total. Default ``3`` -* ``retry_backoff_factor`` - Azure SDK exponential backoff factor. - Default ``0.8`` +* ``retry_backoff_factor`` - Azure SDK exponential backoff factor. Default ``0.8`` * ``retry_backoff_max`` - Azure SDK retry total time. Default ``120`` """ diff --git a/kombu/transport/virtual/base.py b/kombu/transport/virtual/base.py index 669c6f0f..46bcae7e 100644 --- a/kombu/transport/virtual/base.py +++ b/kombu/transport/virtual/base.py @@ -97,6 +97,7 @@ class BrokerState: #: The queue index is used to access directly (constant time) #: all the bindings of a certain queue. It has the following structure:: + #: #: { #: queue: { #: (queue, exchange, routing_key), -- cgit v1.2.1