diff options
Diffstat (limited to 'weed/s3api/s3api_bucket_skip_handlers.go')
| -rw-r--r-- | weed/s3api/s3api_bucket_skip_handlers.go | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/weed/s3api/s3api_bucket_skip_handlers.go b/weed/s3api/s3api_bucket_skip_handlers.go index 549eaa8ce..798725203 100644 --- a/weed/s3api/s3api_bucket_skip_handlers.go +++ b/weed/s3api/s3api_bucket_skip_handlers.go @@ -1,10 +1,10 @@ package s3api import ( - "github.com/seaweedfs/seaweedfs/weed/glog" - "github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants" "net/http" + "github.com/seaweedfs/seaweedfs/weed/glog" + "github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants" "github.com/seaweedfs/seaweedfs/weed/s3api/s3err" ) @@ -44,12 +44,6 @@ func (s3a *S3ApiServer) DeleteBucketPolicyHandler(w http.ResponseWriter, r *http s3err.WriteErrorResponse(w, r, http.StatusNoContent) } -// PutBucketVersioningHandler Put bucket Versionin -// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html -func (s3a *S3ApiServer) PutBucketVersioningHandler(w http.ResponseWriter, r *http.Request) { - s3err.WriteErrorResponse(w, r, s3err.ErrNotImplemented) -} - // GetBucketTaggingHandler Returns the tag set associated with the bucket // https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html func (s3a *S3ApiServer) GetBucketTaggingHandler(w http.ResponseWriter, r *http.Request) { |
