work even longer on frontend, vite seems to be really slow

This commit is contained in:
einhornimmond 2024-12-20 14:47:52 +01:00
parent 39c7d1fe98
commit 61e962dafc

View File

@ -54,13 +54,13 @@ jobs:
if curl -s --connect-timeout 5 http://localhost:3000/login > /dev/null; then
break
else
echo "Connection failed. Try $i from 10. Wait 5 Seconds..."
sleep 5
echo "Connection failed. Try $i from 10. Wait 10 Seconds..."
sleep 10
fi
done
if [ $i -eq 10 ]; then
echo "Server not reachable after 10 tries."
if [ $i -eq 100 ]; then
echo "Server not reachable after 100 tries."
exit 1
fi