From fc4d5774fa586f9eff75f2e1db3d6b67a4f05347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20=C5=81=C4=85giewka?= Date: Sat, 11 Oct 2025 20:42:40 +0200 Subject: [PATCH] =?UTF-8?q?Bugfix/enable=20IPv6=20connectivity=C2=A0for=20?= =?UTF-8?q?Redis=20in=20job=20queue=20module=20(#5726)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Enable IPv6 connectivity for Redis in job queue module * Update changelog --- CHANGELOG.md | 1 + apps/api/src/app/app.module.ts | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01883f0f3..6139cbbab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,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 +- Enabled IPv6 connectivity for _Redis_ in the job queue module by setting the address family - Fixed an issue where importing custom asset profiles failed due to validation errors ## 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..86ceede28 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -71,9 +71,10 @@ import { UserModule } from './user/user.module'; BullModule.forRoot({ redis: { db: parseInt(process.env.REDIS_DB ?? '0', 10), + family: 0, host: process.env.REDIS_HOST, - port: parseInt(process.env.REDIS_PORT ?? '6379', 10), - password: process.env.REDIS_PASSWORD + password: process.env.REDIS_PASSWORD, + port: parseInt(process.env.REDIS_PORT ?? '6379', 10) } }), CacheModule,