Merge pull request #14793 from xiaket/devel

remove main_q for simplicity.
This commit is contained in:
Brian Coca
2016-03-07 12:51:38 -05:00
3 changed files with 4 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ class ResultProcess(multiprocessing.Process):
result = None
starting_point = self._cur_worker
while True:
(worker_prc, main_q, rslt_q) = self._workers[self._cur_worker]
(worker_prc, rslt_q) = self._workers[self._cur_worker]
self._cur_worker += 1
if self._cur_worker >= len(self._workers):
self._cur_worker = 0