From 60487e75f31910b944ecb43f68e43940bdebbd04 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 1 Dec 2025 16:08:48 -0800 Subject: [PATCH] Fix port conflict in s3-tagging-tests CI job by changing volume port from 8084 to 8085 --- .github/workflows/s3-go-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/s3-go-tests.yml b/.github/workflows/s3-go-tests.yml index 480931e46..74ca57269 100644 --- a/.github/workflows/s3-go-tests.yml +++ b/.github/workflows/s3-go-tests.yml @@ -442,7 +442,7 @@ jobs: -dir="$WEED_DATA_DIR" \ -master.raftHashicorp -master.electionTimeout 1s -master.volumeSizeLimitMB=100 \ -volume.max=100 -volume.preStopSeconds=1 \ - -master.port=9338 -volume.port=8084 -filer.port=8893 -s3.port=8006 -metricsPort=9329 \ + -master.port=9338 -volume.port=8085 -filer.port=8893 -s3.port=8006 -metricsPort=9329 \ -s3.allowEmptyFolder=false -s3.allowDeleteBucketNotEmpty=true -s3.config="$GITHUB_WORKSPACE/docker/compose/s3.json" -master.peers=none & pid=$! @@ -458,7 +458,7 @@ jobs: done for i in {1..30}; do - if curl -s http://localhost:8084/status > /dev/null 2>&1; then + if curl -s http://localhost:8085/status > /dev/null 2>&1; then echo "Volume server is ready" break fi