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
c24f6f43
Commit
c24f6f43
authored
Sep 06, 2013
by
Kavin Kankeshwar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid ugly formatting due to a long if statement
parent
a075ec98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
lib/ansible/playbook/__init__.py
+6
-5
No files found.
lib/ansible/playbook/__init__.py
View file @
c24f6f43
...
...
@@ -573,11 +573,12 @@ class PlayBook(object):
host_list
=
self
.
_list_available_hosts
(
play
.
hosts
)
# If threshold for max nodes failed is exceeded or if any_errors_fatal is true, bail out.
if
(
(
task
.
any_errors_fatal
and
len
(
host_list
)
<
hosts_count
)
or
((
hosts_count
-
len
(
host_list
))
>
int
((
play
.
max_fail_pct
)
/
100.0
*
hosts_count
))
):
# Set max_fail_pct to 0, So if any hosts fails, bail out
if
task
.
any_errors_fatal
and
len
(
host_list
)
<
hosts_count
:
play
.
max_fail_pct
=
0
# If threshold for max nodes failed is exceeded , bail out.
if
(
hosts_count
-
len
(
host_list
))
>
int
((
play
.
max_fail_pct
)
/
100.0
*
hosts_count
):
host_list
=
None
# if no hosts remain, drop out
...
...
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