Commit dfcf6a20 by James Cammarata

Skip hosts with no state while iterating tasks in the linear strategy

Fixes #11693
parent 206ef272
......@@ -82,7 +82,10 @@ class StrategyModule(StrategyBase):
# specified in the given hosts array
rvals = []
for host in hosts:
(s, t) = host_tasks[host.name]
host_state_task = host_tasks[host.name]
if host_state_task is None:
continue
(s, t) = host_state_task
if s.run_state == cur_state and s.cur_block == cur_block:
new_t = iterator.get_next_task_for_host(host)
#if new_t != t:
......
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