Commit c24f6f43 by Kavin Kankeshwar

Avoid ugly formatting due to a long if statement

parent a075ec98
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment