From f332d4ebe52076570b417ce287f183f07a8af8fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20=C5=81=C4=85giewka?= Date: Sat, 11 Oct 2025 12:29:04 +0200 Subject: [PATCH] fix: allow connecting to IPv6 Redis in job queue module --- CHANGELOG.md | 1 + apps/api/src/app/app.module.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 197bcdac5..743bfe9ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed the server startup message to properly display IPv6 addresses +- Fixed connecting to IPv6 Redis instances in job queue module ## 2.207.0 - 2025-10-08 diff --git a/apps/api/src/app/app.module.ts b/apps/api/src/app/app.module.ts index 8596aa0eb..ea3e47d41 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -73,6 +73,7 @@ import { UserModule } from './user/user.module'; db: parseInt(process.env.REDIS_DB ?? '0', 10), host: process.env.REDIS_HOST, port: parseInt(process.env.REDIS_PORT ?? '6379', 10), + family: 0, password: process.env.REDIS_PASSWORD } }),