We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11cdf04 commit be6020eCopy full SHA for be6020e
packages/backend/src/redis.ts
@@ -3,7 +3,7 @@ import { Redis } from 'ioredis';
3
import fs from "fs";
4
5
const buildTlsOptions = (): Record<string, unknown> => {
6
- if (env.REDIS_TLS_ENABLED !== "true") {
+ if (env.REDIS_TLS_ENABLED !== "true" && !env.REDIS_URL.startsWith("rediss://")) {
7
return {};
8
}
9
0 commit comments