mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-10 18:34:03 -07:00
correctly deal with changed (#31812)
This commit is contained in:
parent
5751b9b224
commit
21cdddce74
3 changed files with 7 additions and 2 deletions
|
@ -218,7 +218,10 @@ class CallbackBase(AnsiblePlugin):
|
|||
|
||||
def _clean_results(self, result, task_name):
|
||||
''' removes data from results for display '''
|
||||
pass
|
||||
if task_name in ['debug']:
|
||||
for remove_key in ('invocation'):
|
||||
if remove_key in result:
|
||||
del result[remove_key]
|
||||
|
||||
def set_play_context(self, play_context):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue