With the latest Ansible update (2.3) I noticed that whenever I run a playbook with -vv the informational message “META: ran handlers” comes.
For example
`
PLAYBOOK: yolo.yml *************************************************************************
1 plays in yolo.yml
PLAY [localhost] ********************************************************************************
META: ran handlers
TASK [some task] ***************************************************
task path:/ansible/playbooks/yolo.yml:7
ok: [localhost] => {some output}
META: ran handlers
META: ran handlers
PLAY RECAP **************************************************************************************
localhost : ok=1 changed=0 unreachable=0 failed=0
`
I understand that something was changed in 2.3 and this message appears (I haven’t noticed it before with 2.2), but what that actually means? In my playbook I call no handler, but this message seems to appear everytime.
Thanks.