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
As of redis 6, Heroku now requires you to use secure (rediss) urls. Additionally, Heroku is using self-signed certificates. This doesn't seem to work with the current setup.
I believe the change required here is to check the protocol and if rediss, pass in the following option:
tls: {
rejectUnauthorized: false,
}
We might also want to upgrade the redis node package as well from 3 to 4 although there may be some breaking changes.
The text was updated successfully, but these errors were encountered:
…elf-signed cert.
By setting the following environment variables:
REDIS_URL = rediss://localhost:6379 (or whatever the host is)
REDIS_REJECT_UNAUTHORIZED = 'false'
fixes#43
As of redis 6, Heroku now requires you to use secure (
rediss
) urls. Additionally, Heroku is using self-signed certificates. This doesn't seem to work with the current setup.I believe the change required here is to check the protocol and if
rediss
, pass in the following option:We might also want to upgrade the
redis
node package as well from 3 to 4 although there may be some breaking changes.The text was updated successfully, but these errors were encountered: