mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34: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: {
|
socket: {
|
||||||
host: credentials.host as string,
|
host: credentials.host as string,
|
||||||
port: credentials.port as number,
|
port: credentials.port as number,
|
||||||
|
tls: credentials.ssl === true,
|
||||||
},
|
},
|
||||||
database: credentials.database as number,
|
database: credentials.database as number,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue