Skip to content

Commit

Permalink
Fix: 스크립트 오타수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed Jul 1, 2024
1 parent 53a5ab2 commit 8702ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
sleep 10
# 헬스 체크를 통해 새 컨테이너가 정상적으로 실행 중인지 확인
until [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:$NEW_PORT/actuator/health)" == "200"]]; do
echo "Waiting for the new container to respond with HTTP 200 or 404..."
until [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:$NEW_PORT/actuator/health)" == "200" ]]; do
echo "Waiting for the new container to respond with HTTP 200..."
sleep 2
done
Expand Down

0 comments on commit 8702ce4

Please sign in to comment.