-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
Hi,
We use this library in our .NET 5 aspnet application and it works fine in all the places:
Redis inside Docker
AWS Elastic Cache (when we set ssl=true in the connection string)
In Heroku Redis (free tier when we set ssl=false)
But:
In Heroku Redis paid tiers (which has TLS enabled) we get the following error:
Error accepting a client connection: error:1408F10B:SSL routines:ssl3_get_record:wrong version number
So, I updated the connection string (ssl=true):
But now it just times out.
amul047