From 22465b8a96340f8f2d1d1421522615d8ef071d85 Mon Sep 17 00:00:00 2001 From: chrislu Date: Wed, 16 Jul 2025 16:30:07 -0700 Subject: [PATCH] unused --- weed/s3api/s3api_bucket_config.go | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/weed/s3api/s3api_bucket_config.go b/weed/s3api/s3api_bucket_config.go index a157b93e8..f6de0529e 100644 --- a/weed/s3api/s3api_bucket_config.go +++ b/weed/s3api/s3api_bucket_config.go @@ -240,29 +240,6 @@ func (s3a *S3ApiServer) setBucketOwnership(bucket, ownership string) s3err.Error }) } -// removeBucketConfigKey removes a specific configuration key from bucket -func (s3a *S3ApiServer) removeBucketConfigKey(bucket, key string) s3err.ErrorCode { - return s3a.updateBucketConfig(bucket, func(config *BucketConfig) error { - if config.Entry.Extended != nil { - delete(config.Entry.Extended, key) - } - - // Update our local config too - switch key { - case s3_constants.ExtVersioningKey: - config.Versioning = "" - case s3_constants.ExtOwnershipKey: - config.Ownership = "" - case s3_constants.ExtAmzAclKey: - config.ACL = nil - case s3_constants.ExtAmzOwnerKey: - config.Owner = "" - } - - return nil - }) -} - // loadCORSFromMetadata loads CORS configuration from bucket metadata func (s3a *S3ApiServer) loadCORSFromMetadata(bucket string) (*cors.CORSConfiguration, error) { // Validate bucket name to prevent path traversal attacks