From 6f24582eb9b31b8046fcb7dbe8141b2caa12d673 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Fri, 10 Apr 2020 16:18:02 +0200 Subject: [PATCH] CI: do 12 attempts to connect to test instance AArch64 needs a bit more time to boot testing instance. So give it more time by doubling amount of connect attempts. Change-Id: I87ca65691dfbac84349e8af24d2f36f1db1c8be1 --- tests/test-core-openstack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-core-openstack.sh b/tests/test-core-openstack.sh index 01c83aa806..8339a7d57c 100755 --- a/tests/test-core-openstack.sh +++ b/tests/test-core-openstack.sh @@ -76,7 +76,7 @@ function test_instance_boot { echo "SUCCESS: Floating ip allocation" echo "TESTING: PING&SSH to floating ip" - attempts=6 + attempts=12 for i in $(seq 1 ${attempts}); do if ping -c1 -W1 ${fip_addr} && ssh -v -o BatchMode=yes -o StrictHostKeyChecking=no cirros@${fip_addr} hostname; then break