mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 10:11:05 -03:30
Make new host summary fields backwards compatible
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user