mirror of https://github.com/ansible/ansible.git
Implicit flush_handlers inherit play tags (#83968)
parent
ee9e6130a7
commit
0f4f05ebe4
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- "Do not run implicit ``flush_handlers`` meta tasks when the whole play is excluded from the run due to tags specified."
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tags: the_whole_play
|
||||||
|
tasks:
|
||||||
|
- command: echo
|
||||||
|
notify: h
|
||||||
|
handlers:
|
||||||
|
- name: h
|
||||||
|
debug:
|
||||||
|
msg: handler_ran
|
||||||
Loading…
Reference in New Issue