mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 06:30:19 -07:00
Indentation error causing forks to not be parallel. Ahem :)
This commit is contained in:
parent
32f574b24d
commit
09e690fd7c
1 changed files with 8 additions and 8 deletions
|
@ -637,13 +637,13 @@ class Runner(object):
|
||||||
prc.start()
|
prc.start()
|
||||||
workers.append(prc)
|
workers.append(prc)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
for worker in workers:
|
for worker in workers:
|
||||||
worker.join()
|
worker.join()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
for worker in workers:
|
for worker in workers:
|
||||||
worker.terminate()
|
worker.terminate()
|
||||||
worker.join()
|
worker.join()
|
||||||
|
|
||||||
results = []
|
results = []
|
||||||
while not result_queue.empty():
|
while not result_queue.empty():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue