Fix key; Debugging
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Danny Bessems 2022-04-19 12:12:15 +02:00
parent e4bf846a57
commit 69aee17d84
1 changed files with 5 additions and 3 deletions

View File

@ -42,9 +42,12 @@
async: 150
poll: 0
- ansible.builtin.debug:
var: job_init
- name: Poll for completion
ansible.builtin.async_status:
id: "{{ item.ansible_job_id }}"
jid: "{{ item.ansible_job_id }}"
with_items: "{{ job_init.results }}"
register: job_poll
retries: 5
@ -52,5 +55,4 @@
until: job_poll.finished
- ansible.builtin.debug:
msg: "{{ job_init }} {{ job_poll }}"
var: job_poll