more time

This commit is contained in:
einhornimmond 2024-12-20 16:39:29 +01:00
parent 61e962dafc
commit 3eb7e985fd

View File

@ -50,11 +50,11 @@ jobs:
- name: Wait for the frontend to be ready
run: |
for i in {1..10}; do
for i in {1..100}; do
if curl -s --connect-timeout 5 http://localhost:3000/login > /dev/null; then
break
else
echo "Connection failed. Try $i from 10. Wait 10 Seconds..."
echo "Connection failed. Try $i from 100. Wait 10 Seconds..."
sleep 10
fi
done