Browse Source
Bugfix/enable IPv6 connectivity for Redis in job queue module (#5726)
* Enable IPv6 connectivity for Redis in job queue module
* Update changelog
pull/5734/head
Szymon Łągiewka
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/app/app.module.ts
|
|
@ -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 |
|
|
|
|
|
@ -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, |
|
|
|