mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-19 20:07:57 +08:00
only disallow streaming signed when no auth enabled
fix https://github.com/chrislusf/seaweedfs/issues/2101
This commit is contained in:
@@ -63,8 +63,8 @@ func (s3a *S3ApiServer) PutObjectHandler(w http.ResponseWriter, r *http.Request)
|
|||||||
}
|
}
|
||||||
|
|
||||||
dataReader := r.Body
|
dataReader := r.Body
|
||||||
|
rAuthType := getRequestAuthType(r)
|
||||||
if s3a.iam.isEnabled() {
|
if s3a.iam.isEnabled() {
|
||||||
rAuthType := getRequestAuthType(r)
|
|
||||||
var s3ErrCode s3err.ErrorCode
|
var s3ErrCode s3err.ErrorCode
|
||||||
switch rAuthType {
|
switch rAuthType {
|
||||||
case authTypeStreamingSigned:
|
case authTypeStreamingSigned:
|
||||||
@@ -79,8 +79,7 @@ func (s3a *S3ApiServer) PutObjectHandler(w http.ResponseWriter, r *http.Request)
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
rAuthType := getRequestAuthType(r)
|
if authTypeStreamingSigned == rAuthType {
|
||||||
if authTypeAnonymous != rAuthType {
|
|
||||||
writeErrorResponse(w, s3err.ErrAuthNotSetup, r.URL)
|
writeErrorResponse(w, s3err.ErrAuthNotSetup, r.URL)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user