mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
Make new host summary fields backwards compatible
This commit is contained in:
@@ -308,10 +308,10 @@ class BaseCallbackModule(CallbackBase):
|
|||||||
changed=stats.changed,
|
changed=stats.changed,
|
||||||
dark=stats.dark,
|
dark=stats.dark,
|
||||||
failures=stats.failures,
|
failures=stats.failures,
|
||||||
ignored=stats.ignored,
|
ignored=getattr(stats, 'ignored', 0),
|
||||||
ok=stats.ok,
|
ok=stats.ok,
|
||||||
processed=stats.processed,
|
processed=stats.processed,
|
||||||
rescued=stats.rescued,
|
rescued=getattr(stats, 'rescued', 0),
|
||||||
skipped=stats.skipped
|
skipped=stats.skipped
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user