Increment changed stat for a failed task if changed. (#18014)
This commit is contained in:
parent
4f06a86161
commit
534bd12ae9
1 changed files with 2 additions and 0 deletions
|
@ -368,6 +368,8 @@ class StrategyBase:
|
|||
)
|
||||
else:
|
||||
self._tqm._stats.increment('ok', original_host.name)
|
||||
if 'changed' in task_result._result and task_result._result['changed']:
|
||||
self._tqm._stats.increment('changed', original_host.name)
|
||||
self._tqm.send_callback('v2_runner_on_failed', task_result, ignore_errors=original_task.ignore_errors)
|
||||
elif task_result.is_unreachable():
|
||||
self._tqm._unreachable_hosts[original_host.name] = True
|
||||
|
|
Loading…
Reference in a new issue