You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ansible has a concept of notify and handlers. A handler does something like restart nginx or supervisord or update apt-get or something else and is meant to run often. A task can then notify a handler with:
Unfortunately, the notifies weren't firing, so Pull Request #210 removes them and manually performs the restarts.
tl;dr: We should figure out why the notifies are not firing and fix them. My guess is something to do with the notification handlers being in different playbooks and not linked correctly.
The text was updated successfully, but these errors were encountered:
Ansible has a concept of
notify
andhandlers
. A handler does something like restart nginx or supervisord or update apt-get or something else and is meant to run often. A task can then notify a handler with:Unfortunately, the notifies weren't firing, so Pull Request #210 removes them and manually performs the restarts.
tl;dr: We should figure out why the notifies are not firing and fix them. My guess is something to do with the notification handlers being in different playbooks and not linked correctly.
The text was updated successfully, but these errors were encountered: