1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-31 05:04:23 +03:00

refactor(auth): early returns in cred listener

This commit is contained in:
Nedyalko Dyakov
2025-04-24 17:15:17 +03:00
parent 5f91e668ab
commit d0bfdabf6b

View File

@ -14,22 +14,24 @@ type ReAuthCredentialsListener struct {
// It calls the reAuth function with the new credentials.
// If the reAuth function returns an error, it calls the onErr function with the error.
func (c *ReAuthCredentialsListener) OnNext(credentials Credentials) {
if c.reAuth != nil {
err := c.reAuth(credentials)
if err != nil {
if c.onErr != nil {
c.onErr(err)
}
}
if c.reAuth == nil {
return
}
err := c.reAuth(credentials)
if err != nil {
c.OnError(err)
}
}
// OnError is called when an error occurs.
// It can be called from both the credentials provider and the reAuth function.
func (c *ReAuthCredentialsListener) OnError(err error) {
if c.onErr != nil {
c.onErr(err)
if c.onErr == nil {
return
}
c.onErr(err)
}
// NewReAuthCredentialsListener creates a new ReAuthCredentialsListener.