Skip to content

Commit

Permalink
fix: added logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mckrava committed Nov 21, 2023
1 parent 0bf7329 commit eab2fef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/modulesConfig/bullModule.forRoot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ import { SharedBullAsyncConfiguration } from '@nestjs/bull/dist/interfaces';
export default {
inject: [AppConfig],
useFactory: (config: AppConfig) => {

console.log('config.AGGREGATOR_REDIS_HOST - ', config.AGGREGATOR_REDIS_HOST)
console.log('config.AGGREGATOR_REDIS_PORT - ', config.AGGREGATOR_REDIS_PORT)
console.log('config.AGGREGATOR_REDIS_PASSWORD - ', config.AGGREGATOR_REDIS_PASSWORD)
console.log('config.AGGREGATOR_REDIS_PREFIX - ', config.AGGREGATOR_REDIS_PREFIX)


const getClient = () => {
const client = new Redis({
host: config.AGGREGATOR_REDIS_HOST,
Expand Down

0 comments on commit eab2fef

Please sign in to comment.