mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
fix(Redis Chat Memory Node): Respect the SSL flag from the credential (#11689)
This commit is contained in:
parent
565f8cd8c7
commit
b5cbf7566d
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue