Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
09e690fd
Commit
09e690fd
authored
Apr 03, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Indentation error causing forks to not be parallel. Ahem :)
parent
32f574b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
lib/ansible/runner.py
+8
-8
No files found.
lib/ansible/runner.py
View file @
09e690fd
...
...
@@ -75,7 +75,7 @@ class Runner(object):
remote_port
=
C
.
DEFAULT_REMOTE_PORT
,
background
=
0
,
basedir
=
None
,
setup_cache
=
None
,
transport
=
'paramiko'
,
conditional
=
'True'
,
groups
=
{},
callbacks
=
None
,
verbose
=
False
,
debug
=
False
,
sudo
=
False
,
extra_vars
=
None
):
if
setup_cache
is
None
:
setup_cache
=
{}
if
basedir
is
None
:
...
...
@@ -637,13 +637,13 @@ class Runner(object):
prc
.
start
()
workers
.
append
(
prc
)
try
:
for
worker
in
workers
:
worker
.
join
()
except
KeyboardInterrupt
:
for
worker
in
workers
:
worker
.
terminate
()
worker
.
join
()
try
:
for
worker
in
workers
:
worker
.
join
()
except
KeyboardInterrupt
:
for
worker
in
workers
:
worker
.
terminate
()
worker
.
join
()
results
=
[]
while
not
result_queue
.
empty
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment