I'm running a set of tests with py.test. They pass. Yippie! But I'm getting this message:

Exception KeyError: KeyError(4427427920,) in <module 'threading' from '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.pyc'> ignored

How should I go about tracking down the source of that? (I'm not using threading directly, but am using gevent.)

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I had a similar problem with a gevent prototype script.

The Greenlet callback was executing fine and I was synchronizing back to the main thread via g.join(). For my problem, I had to call gevent.shutdown() to shutdown (what I assume is) the Hub. After I manually shutdown the event loop, the program terminates properly without that error.

link|improve this answer
+1 -- but I'm asking about how to track down the source of the issue, not how to pave over the issue. – kkurian Feb 6 at 22:08
I'm seeing the same thing with gevent while running tests with nose. Oddly enough, when the tests all pass I don't see the error, but when a test fails I see it. I'm using monkey.patch_all(). Notably, when I do monkey.patch_all(thread=False) the errors go away. – Daniel Feb 9 at 2:50
Tracking down the error could be fairly difficult. If I'm understanding this problem, it has to do with the background thread that is running. It seems like the problem is coming from the main loop terminating before the background thread has the ability to finish what it's doing. The interrupt from the main thread terminating must be causing the program to throw the exception. I think the best way to solve this problem is to make sure all threads have finished processing before shutting down the main process. – Kris Feb 11 at 1:48
@Kris I agree both about the difficutly and what's likely causing the issue. What's not clear to me what's firing off threads, what the threads are doing, and why they're not properly finishing. I guess I'll just assume that it's something in gevent, that everything I'm doing is fine, and that gevent.shutdown() will just do the right thing. Thanks for your help! – kkurian Feb 14 at 17:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.