-
Notifications
You must be signed in to change notification settings - Fork 146
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
No way to configure Redis (to disable SSL verification) #1372
Comments
Yeah, we should define |
PR welcome. |
Done - what about Pubsubstub? I guess we're stuck with the monkey patch there, is it okay to entrench that within the gem too? |
Yeah, you can send a similar PR to pubsubstub, I'll merge it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no way to configure Redis within Shipit (or PubStubHub), namely, change ssl_params on the initializer. Our problem specifically came from Heroku upgrading us to Redis 6.0. 6.0 requires TLS but Heroku doesn't support it (as routing it internal) so rejects the certificate, the workaround is to disable SSL verification.
See: https://help.heroku.com/HC0F8CUS/heroku-key-value-store-connection-issues and https://devcenter.heroku.com/articles/connecting-heroku-redis#external-connections
We ended up with these unfortunate monkey patches. I'll try and get a contribution together.
The text was updated successfully, but these errors were encountered: