Increase retry count/sleep times when waiting for lorax to start

the biggest slow down is fetching data for many repositories
over a slow network. The previous retry count and sleep times
sometimes are not enough on Fedora.
This commit is contained in:
Alexander Todorov 2019-05-27 13:07:56 +03:00 committed by Alexander Todorov
parent 688f70eefa
commit f61dfcc2c7

View File

@ -80,10 +80,10 @@ fi
tries=0
until curl -m 15 --unix-socket /run/weldr/api.socket http://localhost:4000/api/status | grep 'db_supported.*true'; do
tries=$((tries + 1))
if [ $tries -gt 20 ]; then
if [ $tries -gt 50 ]; then
exit 1
fi
sleep 2
sleep 5
echo "DEBUG: Waiting for backend API to become ready before testing ..."
done;