mirror of https://github.com/ansible/ansible.git
Fix exception when including tasks from handlers (#47307)
Set _notified_handlers for the task's _uuid that is run as a handler Fix #47287pull/47436/head
parent
335a979f1d
commit
6497049f2a
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "handlers - fix crash when handler task include tasks"
|
@ -0,0 +1,16 @@
|
||||
---
|
||||
- name: Verify handler can include other tasks (#47287)
|
||||
hosts: testhost
|
||||
tasks:
|
||||
- name: include a task from the tasks section
|
||||
include_tasks: handlers.yml
|
||||
|
||||
- name: notify a handler
|
||||
debug:
|
||||
msg: notifying handler
|
||||
changed_when: yes
|
||||
notify: include a task from the handlers section
|
||||
|
||||
handlers:
|
||||
- name: include a task from the handlers section
|
||||
include_tasks: handlers.yml
|
Loading…
Reference in New Issue