fix(ci): 배포 health check 대기 90초→180초 확장 — 기동 타임아웃 실패 대응

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
htlee 2026-03-19 05:17:23 +09:00
부모 3a89354e88
커밋 3b0c09575e

파일 보기

@ -109,8 +109,8 @@ jobs:
echo "--- Starting service ---" echo "--- Starting service ---"
systemctl start signal-batch systemctl start signal-batch
# 5단계: 기동 확인 (최대 90초 — 64GB 힙 AlwaysPreTouch) # 5단계: 기동 확인 (최대 180초 — 64GB 힙 AlwaysPreTouch + 캐시 워밍업)
for i in $(seq 1 90); do for i in $(seq 1 180); do
if curl -sf "$BASE_URL/actuator/health/liveness" > /dev/null 2>&1; then if curl -sf "$BASE_URL/actuator/health/liveness" > /dev/null 2>&1; then
echo "Service started successfully (${i}s)" echo "Service started successfully (${i}s)"
curl -s "$BASE_URL/actuator/health" curl -s "$BASE_URL/actuator/health"