Merge "threadgroup: don't log GreenletExit"

This commit is contained in:
Jenkins
2014-11-19 18:11:59 +00:00
committed by Gerrit Code Review

View File

@@ -96,6 +96,8 @@ class ThreadGroup(object):
continue continue
try: try:
x.stop() x.stop()
except eventlet.greenlet.GreenletExit:
pass
except Exception as ex: except Exception as ex:
LOG.exception(ex) LOG.exception(ex)