From cb210cecb7a40cb00d6f0d8aafb9ed2fc33bdc1b Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 17 Jul 2015 12:42:20 -0700 Subject: [PATCH] Update 'impl_eventlet' docstring to reflect actual impl. Change-Id: I6131fe747c5fb4ef6319a9c22ce029ba7a8e0268 --- oslo_messaging/_executors/impl_eventlet.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oslo_messaging/_executors/impl_eventlet.py b/oslo_messaging/_executors/impl_eventlet.py index f0b078357..3786eb9e3 100644 --- a/oslo_messaging/_executors/impl_eventlet.py +++ b/oslo_messaging/_executors/impl_eventlet.py @@ -28,10 +28,11 @@ class EventletExecutor(impl_pooledexecutor.PooledExecutor): """A message executor which integrates with eventlet. This is an executor which polls for incoming messages from a greenthread - and dispatches each message in its own greenthread. + and dispatches each message in its own greenthread powered async + executor. The stop() method kills the message polling greenthread and the wait() - method waits for all message dispatch greenthreads to complete. + method waits for all executor maintained greenthreads to complete. """ def __init__(self, conf, listener, dispatcher):