Don't drop noops from task counting code in linear strategy

pull/13424/merge
James Cammarata 9 years ago
parent 9ac9c75d76
commit 90cb7e1937

@ -67,12 +67,6 @@ class StrategyModule(StrategyBase):
host_tasks_to_run = [(host, state_task)
for host, state_task in iteritems(host_tasks)
if state_task and state_task[1]]
# Drop noops
host_tasks_to_run = [
(host, (state, task))
for host, (state, task) in host_tasks_to_run
if task.action != 'meta' or task.args.get('_raw_params') != 'noop'
]
if host_tasks_to_run:
lowest_cur_block = min(

Loading…
Cancel
Save