From 440357d74027650701d74a82437921fe946fa347 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Wed, 18 Sep 2019 10:29:58 -0400 Subject: [PATCH] Fix help text for heartbeat_in_pthread option Change-Id: Ibc40ad1ddedbe04d6ba614467a78e43b3aa6348d --- oslo_messaging/_drivers/impl_rabbit.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/oslo_messaging/_drivers/impl_rabbit.py b/oslo_messaging/_drivers/impl_rabbit.py index 1f25da68c..e6a673c7d 100644 --- a/oslo_messaging/_drivers/impl_rabbit.py +++ b/oslo_messaging/_drivers/impl_rabbit.py @@ -90,12 +90,12 @@ 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" + 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,