Skip to content

Commit b250a57

Browse files
committed
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. (cherry picked from commit 25446cd)
1 parent dd3a6f1 commit b250a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/ansible_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
]
1717

1818
batches.extend(
19-
['docker pull %s' % (ci_lib.image_for_distro(distro),)]
19+
['docker pull %s' % (ci_lib.image_for_distro(distro),), 'sleep 1']
2020
for distro in ci_lib.DISTROS
2121
)
2222

0 commit comments

Comments
 (0)