chore: Extend frontend startup timeout from 120s to 300s. (#4899)

This commit is contained in:
Airene Fang 2026-08-19 22:06:16 +08:00 committed by GitHub
parent 592b56beac
commit b47c7838a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ def test_local_frontend_ignores_public_docker_port() -> None:
assert "env PORT=3000" in serve
assert 'run_service "Frontend"' in serve
assert "3000 120" in serve
assert "3000 300" in serve
def test_production_gateway_has_a_real_readiness_probe() -> None:

View File

@ -470,7 +470,7 @@ run_service "Gateway" \
# 2. Frontend
run_service "Frontend" \
"cd frontend && $FRONTEND_CMD > ../logs/frontend.log 2>&1" \
3000 120
3000 300
# 3. Nginx
run_service "Nginx" \