fix: use ACL username and decode credentials in Redis URL parsing (#2434)

* fix: use ACL username and decode credentials in Redis URL parsing

* fix: pass family and TLS options to the collab app module
This commit is contained in:
Philip Okugbe
2026-08-26 14:16:18 +01:00
committed by GitHub
parent c3d9a19545
commit 579e22a45e
6 changed files with 36 additions and 4 deletions
@@ -63,6 +63,7 @@ export class CollaborationGateway {
redis: new RedisClient({
host: this.redisConfig.host,
port: this.redisConfig.port,
username: this.redisConfig.username,
password: this.redisConfig.password,
db: this.redisConfig.db,
family: this.redisConfig.family,