tests: Throttle docker pulls for Ansible tests

I hope this will prevent AWS Elastic Container Registry returning 429:
Too Many Requests error, due to the burst of activity from multiple VMs,
when a CI build begins.
pull/790/head
Alex Willmer 4 years ago
parent 1c7e107809
commit 25446cd698

@ -17,7 +17,7 @@ batches = [
]
batches.extend(
['docker pull %s' % (ci_lib.image_for_distro(distro),)]
['docker pull %s' % (ci_lib.image_for_distro(distro),), 'sleep 1']
for distro in ci_lib.DISTROS
)

Loading…
Cancel
Save