mirror of https://github.com/ansible/ansible.git
Ensure task from the worker is finalized/squashed (#73881)
* Ensure task from the worker is finalized/squashed. Fixes #57399. Fixes #49942pull/73930/head
parent
a29fcfa995
commit
832631b888
@ -0,0 +1,5 @@
|
|||||||
|
bugfixes:
|
||||||
|
- Strategy - When building the task in the Strategy from the Worker,
|
||||||
|
ensure it is properly marked as finalized and squashed. Addresses an
|
||||||
|
issue with ``ansible_failed_task``.
|
||||||
|
(https://github.com/ansible/ansible/issues/57399)
|
@ -0,0 +1,17 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- block:
|
||||||
|
- include_role:
|
||||||
|
name: '{{ item }}'
|
||||||
|
loop:
|
||||||
|
- fail
|
||||||
|
rescue:
|
||||||
|
- debug:
|
||||||
|
msg: "{{ ansible_failed_task.name }}"
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- ansible_failed_task.name == "Fail"
|
||||||
|
- ansible_failed_task.action == "fail"
|
||||||
|
- ansible_failed_task.parent is not defined
|
@ -0,0 +1,3 @@
|
|||||||
|
- name: Fail
|
||||||
|
fail:
|
||||||
|
msg: fail
|
Loading…
Reference in New Issue