Remove unnecessary sleep from result process

pull/4420/head
James Cammarata 2015-11-12 17:21:17 -05:00
parent 634e10e5b8
commit 2b25b7974c
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class ResultProcess(multiprocessing.Process):
debug("got a result from worker %d: %s" % (self._cur_worker, result))
break
except queue.Empty:
time.sleep(0.01)
pass
if self._cur_worker == starting_point:
break