From 01bc859f44b4999ab3d0fc89942df903fb0f2d93 Mon Sep 17 00:00:00 2001 From: kyy Date: Fri, 10 Oct 2025 14:01:33 +0900 Subject: [PATCH] =?UTF-8?q?curl=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/health_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/health_check.yml b/.gitea/workflows/health_check.yml index f8fafbb..6ae21e1 100644 --- a/.gitea/workflows/health_check.yml +++ b/.gitea/workflows/health_check.yml @@ -12,7 +12,7 @@ jobs: run: | success=false for i in $(seq 1 5); do - response=$(curl -s -o /dev/null -w "%{\http_code}" http://172.16.10.176:8888/health/API) + response=$(curl -s -o /dev/null -w "%{http_code}" http://172.16.10.176:8888/health/API) content=$(curl -s http://172.16.10.176:8888/health/API) if [ "$response" -eq 200 ] && echo "$content" | grep -q "ok"; then