summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@gmail.com>2021-06-09 15:15:32 +0000
committerMatus Valo <matusvalo@gmail.com>2021-06-09 15:15:32 +0000
commitef1a7dd2c70ec87e583285dd6a12cb88783b3d3b (patch)
treef1dea301abc8350a48ec641d6898fd128b330469
parentcc066228c1988c582355014e991692012019f731 (diff)
downloadkombu-ef1a7dd2c70ec87e583285dd6a12cb88783b3d3b.tar.gz
Small fixes in documentation
-rw-r--r--kombu/transport/azureservicebus.py17
-rw-r--r--kombu/transport/virtual/base.py1
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),