chrislu 15 hours ago
parent
commit
4a764dbb37
  1. 1
      .github/workflows/container_release_unified.yml
  2. 1
      .github/workflows/s3-filer-group-tests.yml
  3. 1
      .github/workflows/sftp-tests.yml
  4. 1
      test/metadata_subscribe/Makefile
  5. 1
      test/metadata_subscribe/README.md
  6. 1
      test/s3/etag/README.md
  7. 1
      test/s3/etag/test_config.json
  8. 2
      test/s3/filer_group/test_config.json
  9. 1
      test/sftp/README.md
  10. 1
      test/sftp/testdata/userstore.json
  11. 1
      weed/filer/empty_folder_cleanup/cleanup_queue.go
  12. 1
      weed/filer/empty_folder_cleanup/cleanup_queue_test.go
  13. 1
      weed/iam/helpers.go
  14. 1
      weed/iam/helpers_test.go
  15. 1
      weed/s3api/s3_constants/buckets.go
  16. 1
      weed/s3api/s3_constants/header_test.go
  17. 1
      weed/wdclient/masterclient_test.go

1
.github/workflows/container_release_unified.yml

@ -224,3 +224,4 @@ jobs:
echo "✓ Successfully copied ${{ matrix.variant }} to Docker Hub" echo "✓ Successfully copied ${{ matrix.variant }} to Docker Hub"

1
.github/workflows/s3-filer-group-tests.yml

@ -83,3 +83,4 @@ jobs:
path: test/s3/filer_group/weed-test*.log path: test/s3/filer_group/weed-test*.log
retention-days: 3 retention-days: 3

1
.github/workflows/sftp-tests.yml

@ -91,3 +91,4 @@ jobs:
echo "| readonly | /public | Read-only |" >> $GITHUB_STEP_SUMMARY echo "| readonly | /public | Read-only |" >> $GITHUB_STEP_SUMMARY

1
test/metadata_subscribe/Makefile

@ -25,3 +25,4 @@ test-resume: build-weed
clean: clean:
rm -f ../../weed/weed rm -f ../../weed/weed

1
test/metadata_subscribe/README.md

@ -47,3 +47,4 @@ go test -v -timeout 5m ./test/metadata_subscribe/...
- Tests create temporary directories that are cleaned up after completion - Tests create temporary directories that are cleaned up after completion
- Tests use ports 9333 (master), 8080 (volume), 8888 (filer) - Tests use ports 9333 (master), 8080 (volume), 8888 (filer)

1
test/s3/etag/README.md

@ -90,3 +90,4 @@ These tests use **AWS SDK v2 for Go**, which has the same ETag validation behavi
- [GitHub Issue #7768](https://github.com/seaweedfs/seaweedfs/issues/7768) - [GitHub Issue #7768](https://github.com/seaweedfs/seaweedfs/issues/7768)
- [AWS S3 ETag Documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_Object.html) - [AWS S3 ETag Documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_Object.html)

1
test/s3/etag/test_config.json

@ -17,3 +17,4 @@
} }
} }

2
test/s3/filer_group/test_config.json

@ -5,4 +5,4 @@
"secret_key": "some_secret_key1", "secret_key": "some_secret_key1",
"region": "us-east-1", "region": "us-east-1",
"filer_group": "testgroup" "filer_group": "testgroup"
}
}

1
test/sftp/README.md

@ -90,3 +90,4 @@ To debug test failures:
``` ```

1
test/sftp/testdata/userstore.json

@ -35,3 +35,4 @@
] ]

1
weed/filer/empty_folder_cleanup/cleanup_queue.go

@ -205,3 +205,4 @@ func (q *CleanupQueue) OldestAge() time.Duration {
} }

1
weed/filer/empty_folder_cleanup/cleanup_queue_test.go

@ -369,3 +369,4 @@ func TestCleanupQueue_Concurrent(t *testing.T) {
} }

1
weed/iam/helpers.go

@ -124,3 +124,4 @@ func MaskAccessKey(accessKeyId string) string {
return accessKeyId return accessKeyId
} }

1
weed/iam/helpers_test.go

@ -133,3 +133,4 @@ func TestMaskAccessKey(t *testing.T) {
} }
} }

1
weed/s3api/s3_constants/buckets.go

@ -4,3 +4,4 @@ const (
// DefaultBucketsPath is the default path for S3 buckets in the filer // DefaultBucketsPath is the default path for S3 buckets in the filer
DefaultBucketsPath = "/buckets" DefaultBucketsPath = "/buckets"
) )

1
weed/s3api/s3_constants/header_test.go

@ -130,3 +130,4 @@ func TestRemoveDuplicateSlashes(t *testing.T) {
} }
} }

1
weed/wdclient/masterclient_test.go

@ -102,3 +102,4 @@ func TestMasterClientFilerGroupLogging(t *testing.T) {
} }
} }
Loading…
Cancel
Save