mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Fixing up performance
This commit is contained in:
@@ -96,7 +96,7 @@ class TaskQueueManager:
|
||||
self._workers = []
|
||||
|
||||
def _initialize_workers(self, num):
|
||||
for i in range(num):
|
||||
for i in xrange(num_workers):
|
||||
main_q = multiprocessing.Queue()
|
||||
rslt_q = multiprocessing.Queue()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user