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