summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2021-07-15 13:30:43 +0200
committerHervé Beraud <hberaud@redhat.com>2021-07-15 13:30:43 +0200
commit4627f14ff8313c9793757984f535824a6e069d12 (patch)
tree4b034f434aef177949b06de54b84bb4f833eca4a
parent82281a0d4e6abffa93175f30b2cbd7acca3cf9fb (diff)
downloadoslo-messaging-4627f14ff8313c9793757984f535824a6e069d12.tar.gz
[trivial] fix typos (missing a white space)
Bad rendering in docs [1][2]. [1] https://docs.openstack.org/oslo.messaging/train/configuration/opts.html#oslo_messaging_rabbit.heartbeat_in_pthread [2] https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.1/html/configuration_reference/barbican#annotations:295aeb97-f9bd-40bb-8ab5-753b8bd76fab Change-Id: I46d20ae85ddb5c76119ce90bf06aeb4584bd7607
-rw-r--r--oslo_messaging/_drivers/impl_rabbit.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/oslo_messaging/_drivers/impl_rabbit.py b/oslo_messaging/_drivers/impl_rabbit.py
index 6b89f89..4392001 100644
--- a/oslo_messaging/_drivers/impl_rabbit.py
+++ b/oslo_messaging/_drivers/impl_rabbit.py
@@ -90,13 +90,13 @@ rabbit_opts = [
'(valid only if SSL enabled).'),
cfg.BoolOpt('heartbeat_in_pthread',
default=False,
- help="EXPERIMENTAL: Run the health check heartbeat thread"
- "through a native python thread. By default if this"
- "option isn't provided the health check heartbeat will"
- "inherit the execution model from the parent process. By"
- "example if the parent process have monkey patched the"
- "stdlib by using eventlet/greenlet then the heartbeat"
- "will be run through a green thread."),
+ help="EXPERIMENTAL: Run the health check heartbeat thread "
+ "through a native python thread. By default if this "
+ "option isn't provided the health check heartbeat will "
+ "inherit the execution model from the parent process. "
+ "By example if the parent process have monkey patched "
+ "the stdlib by using eventlet/greenlet then the "
+ "heartbeat will be run through a green thread."),
cfg.FloatOpt('kombu_reconnect_delay',
default=1.0,
deprecated_group='DEFAULT',