summaryrefslogtreecommitdiff
path: root/oslo_messaging
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-07-19 16:20:27 +0000
committerGerrit Code Review <review@openstack.org>2015-07-19 16:20:27 +0000
commit10bc6244aa8a31a610a4cc7180dcf7772d6ff17e (patch)
tree06908f5119fb61deb8dc9948a8f19b60024c74cd /oslo_messaging
parent431f22cfa5284c00cc445d4c038f7232d2c2393b (diff)
parentcb210cecb7a40cb00d6f0d8aafb9ed2fc33bdc1b (diff)
downloadoslo-messaging-10bc6244aa8a31a610a4cc7180dcf7772d6ff17e.tar.gz
Merge "Update 'impl_eventlet' docstring to reflect actual impl."2.0.0
Diffstat (limited to 'oslo_messaging')
-rw-r--r--oslo_messaging/_executors/impl_eventlet.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/oslo_messaging/_executors/impl_eventlet.py b/oslo_messaging/_executors/impl_eventlet.py
index f0b0783..3786eb9 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):