s3api: extract updateAuthenticationState helper method

This commit is contained in:
Chris Lu
2026-01-14 13:13:08 -08:00
parent 39c4155ba6
commit e11c0425f8

View File

@@ -736,6 +736,14 @@ func (iam *IdentityAccessManagement) isEnabled() bool {
return iam.isAuthEnabled
}
func (iam *IdentityAccessManagement) updateAuthenticationState(identitiesCount int) bool {
if !iam.isAuthEnabled && identitiesCount > 0 {
iam.isAuthEnabled = true
return true
}
return false
}
func (iam *IdentityAccessManagement) IsStaticConfig() bool {
iam.m.RLock()
defer iam.m.RUnlock()