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
{{ message }}
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
The implementation of RedisSessionStorage has no way of enabling TLS in the underlying Redis client it creates.
Type
New feature
Changes to existing features
Motivation
What inspired this feature request? What problems were you facing?
Heroku requires that non-hobby (i.e. production-ready) Redis instances always use TLS, so it's impossible to use RedisSessionStorage with Heroku Redis in production.
It effectively hard-codes this:
client = createClient({
url: dbUrl,
})
where it should allow another flag to be passed such that we can create the client with TLS like this:
Overview
The implementation of
RedisSessionStorage
has no way of enabling TLS in the underlying Redis client it creates.Type
Motivation
Heroku requires that non-hobby (i.e. production-ready) Redis instances always use TLS, so it's impossible to use
RedisSessionStorage
with Heroku Redis in production.It effectively hard-codes this:
where it should allow another flag to be passed such that we can create the client with TLS like this:
Area
Area: <area>
labels to this issue??
Checklist
The text was updated successfully, but these errors were encountered: