Fix include in loop when stategy=free (#33094)

This commit is contained in:
Martin Krizek 2017-11-27 17:02:47 +01:00 committed by jctanner
commit 3a2a1e054f
5 changed files with 20 additions and 1 deletions

View file

@ -431,7 +431,7 @@ class PlayIterator:
# we're advancing blocks, so if this was an end-of-role block we
# mark the current role complete
if block._eor and host.name in block._role._had_task_run and not in_child:
if block._eor and host.name in block._role._had_task_run and not in_child and not peek:
block._role._completed[host.name] = True
else:
task = block.always[state.cur_always_task]