diff --git a/.github/workflows/test_e2e.yml b/.github/workflows/test_e2e.yml index a4fecae85..3909a639d 100644 --- a/.github/workflows/test_e2e.yml +++ b/.github/workflows/test_e2e.yml @@ -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