Flipped debug to default to true for greenpool.spawn_n, to be consistent with the behavior of every other spawn function. You can turn off this exception printing by calling eventlet.debug.hub_exceptions(False)

This commit is contained in:
Ryan Williams
2010-03-28 12:20:28 -07:00
parent f2cd9156e8
commit 11e6793e53

View File

@@ -9,7 +9,7 @@ from eventlet.support import greenlets as greenlet
__all__ = ['GreenPool', 'GreenPile']
DEBUG = False
DEBUG = True
class GreenPool(object):
"""The GreenPool class is a pool of green threads.