commands.process: return immediately when terminating process, without having to deal with the queue.

otherwise, we have to block for $smalldelay between putting and getting the item, since queue putting is not instantaneous
and sometimes we would get 'nothing returned' instead of the timeout message.

Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
Daniel Folkinshteyn 2010-08-05 14:48:12 -04:00 committed by James McCoy
parent 7f4a1be9f9
commit 141b120a9c

View File

@ -82,7 +82,7 @@ def process(f, *args, **kwargs):
p.join(timeout)
if p.is_alive():
p.terminate()
q.put("%s aborted due to timeout." % (p.name,))
return "%s aborted due to timeout." % (p.name,)
try:
v = q.get(block=False)
except Queue.Empty: