Reduce health check interval from 5 to 4 seconds for improved responsiveness
All checks were successful
main-branch-frovide/pipeline/head This commit looks good

This commit is contained in:
Insub Kim 2025-06-06 22:04:11 +09:00
parent ae410bc409
commit 0b9a9fea9f

2
Jenkinsfile vendored
View File

@ -28,7 +28,7 @@ pipeline {
HEALTH_CHECK_URL = "https://${env.DEPLOY_HOST}" // Nginx 80포트로 접근하여 헬스 체크
HEALTH_CHECK_PATH = "/health" // SvelteKit 앱에 구현할 헬스 체크 경로 (아래 참고)
HEALTH_CHECK_TIMEOUT_SECONDS = 30
HEALTH_CHECK_INTERVAL_SECONDS = 5
HEALTH_CHECK_INTERVAL_SECONDS = 4
}
stages {