Skip to content

Commit

Permalink
fix: 무중단 배포 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kalsteve committed Jul 23, 2024
1 parent 9d59a94 commit d156ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ health_check() {
local RESPONSE=$(curl -s "$URL")
if [ -n "$RESPONSE" ]; then
local STATUS=$(echo "$RESPONSE" | jq -r '.status')
if [ "$STATUS" = "UP" ]; then
if [ "$STATUS" = "ok" ]; then
log_message "health check success"
return 0
fi
Expand Down

0 comments on commit d156ac1

Please sign in to comment.