check auth only when enabled

This commit is contained in:
Chris Lu 2021-11-03 12:11:36 -07:00
parent 3c245c69d3
commit 35c37562bc

View File

@ -111,9 +111,11 @@ func (s3a *S3ApiServer) PutBucketHandler(w http.ResponseWriter, r *http.Request)
return return
} }
if _, errCode = s3a.iam.authRequest(r, s3_constants.ACTION_ADMIN); errCode != s3err.ErrNone { if s3a.iam.isEnabled() {
s3err.WriteErrorResponse(w, r, errCode) if _, errCode = s3a.iam.authRequest(r, s3_constants.ACTION_ADMIN); errCode != s3err.ErrNone {
return s3err.WriteErrorResponse(w, r, errCode)
return
}
} }
fn := func(entry *filer_pb.Entry) { fn := func(entry *filer_pb.Entry) {