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,10 +66,13 @@ func (s *SASLAuth) SASLMechanisms() []string {
}
func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) {
saslUsername, err := s.AuthNormalize(saslUsername)
if s.AuthNormalize != nil {
var err error
saslUsername, err = s.AuthNormalize(saslUsername)
if err != nil {
return "", err
}
}
if s.AuthMap == nil {
return saslUsername, nil