Unbreak tests

This commit is contained in:
fox.cpp 2023-03-12 15:15:30 +03:00
parent ca44d0e036
commit 6ef80e8335
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -66,9 +66,12 @@ func (s *SASLAuth) SASLMechanisms() []string {
} }
func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) { func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) {
saslUsername, err := s.AuthNormalize(saslUsername) if s.AuthNormalize != nil {
if err != nil { var err error
return "", err saslUsername, err = s.AuthNormalize(saslUsername)
if err != nil {
return "", err
}
} }
if s.AuthMap == nil { if s.AuthMap == nil {