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:
parent
62de30e8e9
commit
a37bc3788b
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue