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:
parent
688f70eefa
commit
f61dfcc2c7
@ -80,10 +80,10 @@ fi
|
|||||||
tries=0
|
tries=0
|
||||||
until curl -m 15 --unix-socket /run/weldr/api.socket http://localhost:4000/api/status | grep 'db_supported.*true'; do
|
until curl -m 15 --unix-socket /run/weldr/api.socket http://localhost:4000/api/status | grep 'db_supported.*true'; do
|
||||||
tries=$((tries + 1))
|
tries=$((tries + 1))
|
||||||
if [ $tries -gt 20 ]; then
|
if [ $tries -gt 50 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
sleep 2
|
sleep 5
|
||||||
echo "DEBUG: Waiting for backend API to become ready before testing ..."
|
echo "DEBUG: Waiting for backend API to become ready before testing ..."
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user