1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

runner_on_async_failed missing arg

missing and argument from CallbackModule
This commit is contained in:
Tom Booth 2016-10-28 14:03:34 -07:00 committed by Matt Clay
parent 62de30e8e9
commit a37bc3788b

View file

@ -57,7 +57,7 @@ class CallbackModule(CallbackBase):
def runner_on_unreachable(self, host, res):
self.logger.error('%s ansible-command: task execution UNREACHABLE; host: %s; message: %s' % (self.hostname,host,self._dump_results(res)))
def runner_on_async_failed(self, host, res):
def runner_on_async_failed(self, host, res, jid):
self.logger.error('%s ansible-command: task execution FAILED; host: %s; message: %s' % (self.hostname,host,self._dump_results(res)))
def playbook_on_import_for_host(self, host, imported_file):