I'm using Eventlet's example code found here: http://eventlet.net/doc/examples.html#producer-consumer-recursive-web-crawler
Halfway through the run, I encounter multiple instances of the following:
Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/eventlet-0.9.9-py2.6.egg/eventlet/hubs/hub.py", line 285, in fire_timers
timer()
File "/usr/local/lib/python2.6/dist-packages/eventlet-0.9.9-py2.6.egg/eventlet/hubs/timer.py", line 56, in __call__
cb(*args, **kw)
TypeError: exceptions must be classes, or instances, not bool
raisestatements that might re-raise "anything". To debug this you'll have to "instrument" the code by adding logging calls (good luck doing that in anegg-- part of why I just won't installsetuptools!) and a lot of pondering. Or, just open a bug on eventlet's issue tracker, wherever it may be. "Unintelligible" is incorrect -- clearly some spot is raising abool-- but, hard to find in an egg!-) – Alex Martelli Jun 20 '10 at 1:11