mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
Fix nonexistent module_name in callbacks (#23587)
This commit is contained in:
parent
b8507b676b
commit
7c308b3f8c
2 changed files with 3 additions and 5 deletions
|
@ -189,10 +189,8 @@ class CallbackModule(CallbackBase):
|
|||
|
||||
def v2_runner_on_ok(self, result):
|
||||
res = result._result
|
||||
try:
|
||||
module = res['invocation']['module_name']
|
||||
except KeyError:
|
||||
module = None
|
||||
module = result._task.action
|
||||
|
||||
if module == 'setup':
|
||||
host = result._host.get_name()
|
||||
self.send_facts(host, res)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue