79329598

Date: 2025-01-04 21:11:20
Score: 2.5
Natty:
Report link

SSLmode needed to be set to "require" in the connection string to be able to open a connection - &tls.Config needed to be added to the client redis options like this: redisClient = redis.NewClient(&redis.Options{ Addr: redisAddress, Password: conf.Redis.Password, DB: conf.Redis.DB, TLSConfig: &tls.Config{}, }

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: nrs16