diff options
| author | Chris Lu <chris.lu@gmail.com> | 2025-12-01 16:08:48 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2025-12-01 16:16:01 -0800 |
| commit | 5d50baad5a868e1f91d66946f7ab78c4aa537a81 (patch) | |
| tree | a0a0da4e8a7f102252233c70c76b5ef7b95142ca | |
| parent | 2e1be41e75bdf56e589f111782692c463d4e6cb1 (diff) | |
| download | seaweedfs-5d50baad5a868e1f91d66946f7ab78c4aa537a81.tar.xz seaweedfs-5d50baad5a868e1f91d66946f7ab78c4aa537a81.zip | |
Fix port conflict in s3-tagging-tests CI job by changing volume port from 8084 to 8085
| -rw-r--r-- | .github/workflows/s3-go-tests.yml | 4 |
1 files 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 |
