mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 23:21:22 -07:00
Added DIFF_ALWAYS constant
When set to True, will always print the diff. Defaults to False. Fixes #18416 #16073
This commit is contained in:
parent
256a25bdcc
commit
2291163a7a
3 changed files with 10 additions and 1 deletions
|
@ -209,7 +209,7 @@ class PlayContext(Base):
|
|||
_force_handlers = FieldAttribute(isa='bool', default=False)
|
||||
_start_at_task = FieldAttribute(isa='string')
|
||||
_step = FieldAttribute(isa='bool', default=False)
|
||||
_diff = FieldAttribute(isa='bool', default=False)
|
||||
_diff = FieldAttribute(isa='bool', default=C.DIFF_ALWAYS)
|
||||
|
||||
# Fact gathering settings
|
||||
_gather_subset = FieldAttribute(isa='string', default=C.DEFAULT_GATHER_SUBSET)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue