From d748d41657c764a5782dd5513d2d8a3767cac1ed Mon Sep 17 00:00:00 2001 From: tsukumi Date: Sun, 24 Nov 2024 04:34:54 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20Docker=20=E3=82=B3=E3=83=B3=E3=83=86?= =?UTF-8?q?=E3=83=8A=E8=B5=B7=E5=8B=95=E3=83=86=E3=82=B9=E3=83=88=E6=99=82?= =?UTF-8?q?=E3=81=AE=E3=82=BF=E3=82=A4=E3=83=A0=E3=82=A2=E3=82=A6=E3=83=88?= =?UTF-8?q?=E7=A7=92=E6=95=B0=E3=82=92=E6=9C=80=E5=A4=A7=20300=20=E7=A7=92?= =?UTF-8?q?=E3=81=AB=E4=BC=B8=E3=81=B0=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-engine-container.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-engine-container.yml b/.github/workflows/test-engine-container.yml index 0add301d..2901c32c 100644 --- a/.github/workflows/test-engine-container.yml +++ b/.github/workflows/test-engine-container.yml @@ -79,16 +79,16 @@ jobs: run: docker run -d -p 10101:10101 -v ~/.local/share/AivisSpeech-Engine:/home/user/.local/share/AivisSpeech-Engine "${{ steps.docker_vars.outputs.image_tag }}" # Docker コンテナが起動してから、レスポンスが返ってくるまで待機する - # リトライは10回まで `/version` にアクセスしてレスポンスのステータスコードをチェック + # リトライは20回まで `/version` にアクセスしてレスポンスのステータスコードをチェック # - ステータスコードが `200` の場合は正常終了します - # - ステータスコードが `200` 以外の場合は、5秒間スリープしてリトライします + # - ステータスコードが `200` 以外の場合は、15秒間スリープしてリトライします - name: Warm up ENGINE server by waiting run: | set +e # curlのエラーを無視する url="http://127.0.0.1:10101/version" - max_attempts=10 - sleep_interval=5 + max_attempts=20 + sleep_interval=15 for i in $(seq 1 "$max_attempts"); do status=$(curl -o /dev/null -s -w '%{http_code}\n' "$url")