-
-
Notifications
You must be signed in to change notification settings - Fork 464
Open
Description
"@bull-board/api": "^6.16.2",
"@bull-board/express": "^6.16.2",
"@bull-board/nestjs": "^6.16.2",
"@nestjs/axios": "^4.0.1",
"@nestjs/bull": "~11.0.4",
BullModule.registerQueue({
name: MEDIA_QUEUE,
}),
BullBoardModule.forRoot({
route: '/admin/queues',
adapter: ExpressAdapter,
})
BullModule.forRootAsync({
imports: [ConfigModule],
useFactory: async (configService: ConfigService) => {
console.log('REDIS_HOST', configService.get<string>('REDIS_HOST'));
console.log('REDIS_PORT', configService.get<number>('REDIS_PORT'));
return {
redis: {
host: configService.get<string>('REDIS_HOST'),
port: +configService.get<number>('REDIS_PORT'),
},
defaultJobOptions: {
removeOnComplete: {
count: 100,
age: 1000 * 60 * 60 * 24 * 3, // 3 days
},
removeOnFail: {
count: 100,
age: 1000 * 60 * 60 * 24 * 3, // 3 days
},
attempts: MAX_RETRIES,
backoff: {
type: 'exponential',
delay: BACKOFF_TIME,
},
timeout: JOB_TIMEOUT,
},
};
},
inject: [ConfigService],
})
Boards starts but no jobs are present.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels