fix: When there is no access permission configured before startup, the authentication does not take effect after configuring the permission after startup

This commit is contained in:
shichanglin5 2022-06-13 13:23:26 +08:00
parent 37da689319
commit f01dd27752

View file

@ -176,12 +176,12 @@ func (iam *IdentityAccessManagement) lookupAnonymous() (identity *Identity, foun
}
func (iam *IdentityAccessManagement) Auth(f http.HandlerFunc, action Action) http.HandlerFunc {
if !iam.isEnabled() {
return f
}
return func(w http.ResponseWriter, r *http.Request) {
if !iam.isEnabled() {
f(w, r)
return
}
identity, errCode := iam.authRequest(r, action)
if errCode == s3err.ErrNone {
if identity != nil && identity.Name != "" {