fix(Redis Chat Memory Node): Respect the SSL flag from the credential (#11689)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-11-12 12:30:35 +01:00 committed by GitHub
parent 565f8cd8c7
commit b5cbf7566d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -127,6 +127,7 @@ export class MemoryRedisChat implements INodeType {
socket: {
host: credentials.host as string,
port: credentials.port as number,
tls: credentials.ssl === true,
},
database: credentials.database as number,
};