hub: comment

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
YAMAMOTO Takashi 2013-05-08 15:24:42 +09:00 committed by FUJITA Tomonori
parent aa7518a073
commit 6955c13e4e

View File

@ -47,6 +47,9 @@ if HUB_TYPE == 'eventlet':
try:
func(*args, **kwargs)
except:
# log uncaught exception.
# note: this is an intentional divergence from gevent
# behaviour. gevent silently ignores such exceptions.
LOG.error('hub: uncaught exception: %s',
traceback.format_exc())