mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
Fix invocation from bad merge and note where it would need to go to keep
it out of registered vars as well.
This commit is contained in:
parent
25e3fe04a8
commit
92dd563a75
2 changed files with 8 additions and 5 deletions
|
@ -68,11 +68,8 @@ class CallbackBase:
|
|||
keep_invocation = False
|
||||
else:
|
||||
keep_invocation = True
|
||||
if not keep_invocation and 'invocation' in result:
|
||||
del abridged_result['invocation']
|
||||
|
||||
# remove invocation info unless its very very verbose
|
||||
if 'invocation' in abridged_result and self._display.verbosity < 3:
|
||||
if not keep_invocation and 'invocation' in result:
|
||||
del abridged_result['invocation']
|
||||
|
||||
return json.dumps(abridged_result, indent=indent, ensure_ascii=False, sort_keys=sort_keys)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue