1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

fix(client): make socket.host not required (#3024)

Underlying node tls.ConnectionOptions does not require host,
so we shouldnt as well. Further, if `url` is provided in
the upper level config, it takes precedence, which could be misleading:

createClient({
  url: 'rediss://user:secret@localhost:6379/0',
  socket: {
    tls: true,
    host: 'somehost' <-- this gets overwritten to `localhost`
  }
});

fixes #3023
This commit is contained in:
Nikolay Karadzhov
2025-07-21 18:17:07 +03:00
committed by GitHub
parent c21dd924fe
commit 539fe52236

View File

@@ -38,7 +38,6 @@ type RedisTcpOptions = RedisSocketOptionsCommon & NetOptions & Omit<
type RedisTlsOptions = RedisSocketOptionsCommon & tls.ConnectionOptions & { type RedisTlsOptions = RedisSocketOptionsCommon & tls.ConnectionOptions & {
tls: true; tls: true;
host: string;
} }
type RedisIpcOptions = RedisSocketOptionsCommon & Omit< type RedisIpcOptions = RedisSocketOptionsCommon & Omit<