Skip to content

Commit

Permalink
ci/cd: 정상적으로 요청이 안되는 원인을 찾기 위해 log 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Mar 20, 2024
1 parent 8fba429 commit 64ce0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
echo "Testing application response from /actuator on port $PORT..."
for i in {1..24}; do # 최대 1분(120초) 동안 5초 간격으로 반복
echo "Attempt1 $i..."
response=$(curl -s http://localhost:$PORT/actuator)
response=$(curl -v http://localhost:$PORT/actuator)
echo "Attempt2 $i..."
if [[ -z "$response" ]]; then
echo "No response yet. Waiting for 5 seconds..."
Expand Down

0 comments on commit 64ce0c2

Please sign in to comment.