diff -Nru ironic-14.0.1~git2020041013.af9e6ba90/debian/changelog ironic-14.0.1~git2020041013.af9e6ba90/debian/changelog --- ironic-14.0.1~git2020041013.af9e6ba90/debian/changelog 2020-04-10 17:07:22.000000000 +0000 +++ ironic-14.0.1~git2020041013.af9e6ba90/debian/changelog 2020-04-17 08:57:51.000000000 +0000 @@ -1,3 +1,11 @@ +ironic (1:14.0.1~git2020041013.af9e6ba90-0ubuntu2) focal; urgency=medium + + * d/tests/ironic-daemons: increase sleep time between API http checks + to allow more time for service to start, avoiding races on slower + architectures. + + -- James Page Fri, 17 Apr 2020 09:57:51 +0100 + ironic (1:14.0.1~git2020041013.af9e6ba90-0ubuntu1) focal; urgency=medium * New upstream snapshot for OpenStack Ussuri. diff -Nru ironic-14.0.1~git2020041013.af9e6ba90/debian/tests/ironic-daemons ironic-14.0.1~git2020041013.af9e6ba90/debian/tests/ironic-daemons --- ironic-14.0.1~git2020041013.af9e6ba90/debian/tests/ironic-daemons 2020-04-10 17:07:22.000000000 +0000 +++ ironic-14.0.1~git2020041013.af9e6ba90/debian/tests/ironic-daemons 2020-04-17 08:57:51.000000000 +0000 @@ -25,14 +25,14 @@ ret=0 timeout_loop () { - TIMEOUT=100 + TIMEOUT=90 while [ "$TIMEOUT" -gt 0 ]; do if $1 > /dev/null 2>&1; then echo "OK" break fi TIMEOUT=$((TIMEOUT - 1)) - sleep 0.1 + sleep 1 done if [ "$TIMEOUT" -le 0 ]; then