failed, skipped, and unreachable all seem to be needed for various callbacks. Fixes #34716 (#34724)

pull/35865/head
Matt Martz 7 years ago committed by GitHub
parent 0a86287a92
commit d8329e530c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,8 +10,8 @@ from copy import deepcopy
from ansible.parsing.dataloader import DataLoader
from ansible.vars.clean import strip_internal_keys
_IGNORE = ('failed', 'skipped')
_PRESERVE = ('attempts', 'changed', 'retries')
_IGNORE = tuple()
_PRESERVE = ('attempts', 'changed', 'retries', 'failed', 'unreachable', 'skipped')
class TaskResult:

Loading…
Cancel
Save