Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
# HTTP 응답 확인
HTTP_CODE=$(curl -sf -o /dev/null -w "%{http_code}" http://127.0.0.1:$TARGET_PORT/actuator/health 2>/dev/null || echo "000")
HTTP_CODE=$(curl -sf -o /dev/null -w "%{http_code}" http://127.0.0.1:$TARGET_PORT/actuator/health 2>/dev/null)

# 200 또는 403이면 서버가 정상적으로 응답하는 것으로 간주
if [ "$HTTP_CODE" = "200" ] || [ "$HTTP_CODE" = "403" ]; then
Expand Down
Loading