Add retries for UC fetching over HTTP

In CI we've spotted multiple occurances of connection timeouts towards
Gitea resulting in intermittent failures.

A retry is being added here to reduce risk of intermittent failures.

Change-Id: Ic13fc1d62fae1125661b5ca193f25e2fadd6fdb9
This commit is contained in:
Dmitriy Rabotyagov 2024-11-05 16:45:09 +01:00
parent d3a345bd4f
commit 6938bf1271

View File

@ -55,6 +55,9 @@
url: "{{ rally_upper_constraints_url }}"
return_content: yes
register: _u_c_contents_uri
until: _u_c_contents_uri is success
retries: 5
delay: 5
check_mode: false
when: rally_openstack_git_repo is search('http')