Skip to content

Commit

Permalink
fix :: health.sh
Browse files Browse the repository at this point in the history
Increase RETRY_COUNT in health.sh
  • Loading branch information
Kim-Wongi-1 committed Dec 24, 2024
1 parent 9d475b0 commit c0682d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/health.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "> IDLE_PORT: $IDLE_PORT"
echo "> curl -s http://localhost:$IDLE_PORT/profile "
sleep 10

for RETRY_COUNT in {1..10}
for RETRY_COUNT in {1..30}
do
RESPONSE=$(curl -s http://localhost:${IDLE_PORT}/profile)
UP_COUNT=$(echo ${RESPONSE} | grep 'real' | wc -l)
Expand Down

0 comments on commit c0682d2

Please sign in to comment.