From 2841aef014218e4e133591cdc3bdfe4bfee3359f Mon Sep 17 00:00:00 2001 From: hyunseo Date: Fri, 15 Nov 2024 13:15:49 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=ED=97=AC=EC=8A=A4=20=EC=B2=B4=ED=81=AC?= =?UTF-8?q?=20=ED=9B=84=20=EB=8C=80=EA=B8=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 79fad6e0..6fb41c18 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -116,10 +116,12 @@ jobs: for i in {1..40}; do if curl -s http://localhost:${{ env.port }}/actuator/health | grep '"status":"UP"' > /dev/null; then echo "Application is healthy" + echo "Waiting additional 30 seconds for full initialization..." + sleep 30 break fi echo "Waiting for new application to start...($i)" - sleep 10 + sleep 5 done if [ $i -eq 40 ]; then