mirror of https://github.com/ansible/ansible.git
Apply display_failed_stderr on loop item results (#74865)
parent
70f22c7f32
commit
01ab6c6ec7
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- Apply ``display_failed_stderr`` callback option on loop item results. (https://github.com/ansible/ansible/issues/74864)
|
||||||
@ -1,5 +1,8 @@
|
|||||||
+ ansible-playbook -i inventory test.yml
|
+ ansible-playbook -i inventory test.yml
|
||||||
++ set +x
|
++ set +x
|
||||||
fatal: [testhost]: FAILED! => {"changed": false, "msg": "no reason"}
|
fatal: [testhost]: FAILED! => {"changed": false, "msg": "no reason"}
|
||||||
|
failed: [testhost] (item=debug-2) => {
|
||||||
|
"msg": "debug-2"
|
||||||
|
}
|
||||||
fatal: [testhost]: FAILED! => {"msg": "One or more items failed"}
|
fatal: [testhost]: FAILED! => {"msg": "One or more items failed"}
|
||||||
fatal: [testhost]: FAILED! => {"changed": false, "msg": "Failed as requested from task"}
|
fatal: [testhost]: FAILED! => {"changed": false, "msg": "Failed as requested from task"}
|
||||||
|
|||||||
Loading…
Reference in New Issue