mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
Make new host summary fields backwards compatible
This commit is contained in:
parent
8c9544e5ed
commit
c6227797b4
@ -308,10 +308,10 @@ class BaseCallbackModule(CallbackBase):
|
||||
changed=stats.changed,
|
||||
dark=stats.dark,
|
||||
failures=stats.failures,
|
||||
ignored=stats.ignored,
|
||||
ignored=getattr(stats, 'ignored', 0),
|
||||
ok=stats.ok,
|
||||
processed=stats.processed,
|
||||
rescued=stats.rescued,
|
||||
rescued=getattr(stats, 'rescued', 0),
|
||||
skipped=stats.skipped
|
||||
)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user