-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible solution for redis connection issues... #6
Comments
Hi! |
I am hosting everything in docker containers and they are linked between each other with virtual network. Their IPs are dynamic, so the only way to access them is by hostname (which is set in BTW: I'm using latest redis image which is 4.0 |
Ok, thank you. I'll try it on my stand and commit then. |
According to #4 (comment) the reason was bug in StackExchange v1.2.5-1.2.6. |
Possible fix for people having connection problems with redis is to change Providers/Redis/RedisProvider.cs:62
from
Client = new RedisClient(_config.Host, _config.Port, _config.Password, "version=2.6");
to
Client = new RedisClient(_config.Host, _config.Port, _config.Password, "version=2.6,abortConnect=false,ssl=false");
The text was updated successfully, but these errors were encountered: