When adding nested blocks, don't pass in any parent includes
We previously changed block behavior to prefer includes over parent blocks, which broke inheritence in nested blocks. Fixes #15926
This commit is contained in:
parent
a6bff1e49c
commit
09fa05373b
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
|
|||
play=play,
|
||||
parent_block=block,
|
||||
role=role,
|
||||
task_include=task_include,
|
||||
task_include=None,
|
||||
use_handlers=use_handlers,
|
||||
variable_manager=variable_manager,
|
||||
loader=loader,
|
||||
|
|
Loading…
Reference in a new issue