You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I want to use the redis check but it is necessary for me to use the authentication and in the redis check I saw that for the redis client you only set the Addr option, it is possible to add the password parameter to make the authentication works?
Hi, I want to use the redis check but it is necessary for me to use the authentication and in the redis check I saw that for the redis client you only set the Addr option, it is possible to add the password parameter to make the authentication works?
return func(ctx context.Context) error { redisClient := redis.NewClient(&redis.Options{ Addr: config.DSN, Password: config.Password, }) defer redisClient.Close()
Thanks
The text was updated successfully, but these errors were encountered: