mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-30 04:00:21 -07:00
Remove auto-added invocation return value as it is not used by v2 and could leak sensitive data.
This commit is contained in:
parent
931792fc89
commit
6ce6b20268
2 changed files with 0 additions and 10 deletions
|
@ -54,10 +54,7 @@ class CallbackModule(CallbackBase):
|
|||
data = 'omitted'
|
||||
else:
|
||||
data = data.copy()
|
||||
invocation = data.pop('invocation', None)
|
||||
data = json.dumps(data)
|
||||
if invocation is not None:
|
||||
data = json.dumps(invocation) + " => %s " % data
|
||||
|
||||
path = os.path.join("/var/log/ansible/hosts", host)
|
||||
now = time.strftime(self.TIME_FORMAT, time.localtime())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue