1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-11 11:30:32 +02:00

Add "Location:" in response when creating bucket

according to "https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html"
This commit is contained in:
root 2022-04-06 13:56:27 +08:00
parent bc888226fc
commit f15a737a0a

View file

@ -135,6 +135,7 @@ func (s3a *S3ApiServer) PutBucketHandler(w http.ResponseWriter, r *http.Request)
s3err.WriteErrorResponse(w, r, s3err.ErrInternalError)
return
}
w.Header().Set("Location", "/" + bucket)
writeSuccessResponseEmpty(w, r)
}