Merge pull request #13454 from qduxiaoliang/issue

quit plays with an error if there were failed tasks and handler execu…
This commit is contained in:
Brian Coca 2015-12-13 00:18:30 -05:00
commit 64148a84ca

View file

@ -826,6 +826,11 @@ class PlayBook(object):
# if there were failed tasks and handler execution
# is not forced, quit the play with an error
return False
elif task_errors:
# if there were failed tasks and handler execution is forced,
# execute all handlers and quit the play with an error
self.run_handlers(play)
return False
else:
# no errors, go ahead and execute all handlers
if not self.run_handlers(play):