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

(cherry picked from commit d8329e530c)
pull/34928/head
Matt Martz 8 years ago committed by Toshio Kuratomi
parent 80baeb6a3b
commit 2ded3e1fb1

@ -24,8 +24,8 @@ from copy import deepcopy
from ansible.parsing.dataloader import DataLoader
from ansible.vars.manager 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