add task to force all handlers to run

This commit is contained in:
Andy Rajagopalan
2019-11-21 11:56:20 -08:00
parent f421d8bf1f
commit bbfa32f7e3

View File

@@ -19,10 +19,14 @@
url: "{{ atl_bitbucket_dataset_url }}" url: "{{ atl_bitbucket_dataset_url }}"
dest: /tmp/import dest: /tmp/import
- name: Force all notified handlers to run at this point, not waiting for normal sync points
meta: flush_handlers
- name: wait for port 7990 to be up - name: wait for port 7990 to be up
wait_for: wait_for:
port: 7990 port: 7990
delay: 10 delay: 10
timeout: 60
- name: Invoke Import API - name: Invoke Import API
uri: uri:
@@ -35,8 +39,4 @@
body_format: json body_format: json
return_content: yes return_content: yes
register: response register: response
failed_when: "'INITIALISING' not in response.content" failed_when: "'INITIALISING' not in response.content"