Fix included task's name in handler (#33821)
This commit is contained in:
parent
73abde399c
commit
5a5f4b7fcd
1 changed files with 1 additions and 1 deletions
|
@ -813,7 +813,7 @@ class StrategyBase:
|
||||||
for task in block.block:
|
for task in block.block:
|
||||||
result = self._do_handler_run(
|
result = self._do_handler_run(
|
||||||
handler=task,
|
handler=task,
|
||||||
handler_name=None,
|
handler_name=task.get_name(),
|
||||||
iterator=iterator,
|
iterator=iterator,
|
||||||
play_context=play_context,
|
play_context=play_context,
|
||||||
notified_hosts=included_file._hosts[:],
|
notified_hosts=included_file._hosts[:],
|
||||||
|
|
Loading…
Reference in a new issue