mirror of
https://github.com/immich-app/immich.git
synced 2025-01-28 00:59:18 -05:00
feat(server, microservices): add bull prefix (#490)
This commit is contained in:
parent
9de7b8d3a7
commit
cdb0aa00d8
2 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ import { AppLoggerMiddleware } from './middlewares/app-logger.middleware';
|
||||||
|
|
||||||
BullModule.forRootAsync({
|
BullModule.forRootAsync({
|
||||||
useFactory: async () => ({
|
useFactory: async () => ({
|
||||||
|
prefix: 'immich_bull',
|
||||||
redis: {
|
redis: {
|
||||||
host: process.env.REDIS_HOSTNAME || 'immich_redis',
|
host: process.env.REDIS_HOSTNAME || 'immich_redis',
|
||||||
port: parseInt(process.env.REDIS_PORT || '6379'),
|
port: parseInt(process.env.REDIS_PORT || '6379'),
|
||||||
|
|
|
@ -25,6 +25,7 @@ import {
|
||||||
TypeOrmModule.forFeature([UserEntity, ExifEntity, AssetEntity, SmartInfoEntity]),
|
TypeOrmModule.forFeature([UserEntity, ExifEntity, AssetEntity, SmartInfoEntity]),
|
||||||
BullModule.forRootAsync({
|
BullModule.forRootAsync({
|
||||||
useFactory: async () => ({
|
useFactory: async () => ({
|
||||||
|
prefix: 'immich_bull',
|
||||||
redis: {
|
redis: {
|
||||||
host: process.env.REDIS_HOSTNAME || 'immich_redis',
|
host: process.env.REDIS_HOSTNAME || 'immich_redis',
|
||||||
port: parseInt(process.env.REDIS_PORT || '6379'),
|
port: parseInt(process.env.REDIS_PORT || '6379'),
|
||||||
|
|
Loading…
Add table
Reference in a new issue