Browse Source

Update redis-cache.module.ts

pull/947/head
willyp713 3 years ago
committed by GitHub
parent
commit
8325a48dbd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/api/src/app/redis-cache/redis-cache.module.ts

2
apps/api/src/app/redis-cache/redis-cache.module.ts

@ -15,7 +15,7 @@ import { RedisCacheService } from './redis-cache.service';
host: configurationService.get('REDIS_HOST'), host: configurationService.get('REDIS_HOST'),
max: configurationService.get('MAX_ITEM_IN_CACHE'), max: configurationService.get('MAX_ITEM_IN_CACHE'),
port: configurationService.get('REDIS_PORT'), port: configurationService.get('REDIS_PORT'),
password: configurationService.get('REDIS_PASSSWORD'), password: configurationService.get('REDIS_PASSWORD'),
store: redisStore, store: redisStore,
ttl: configurationService.get('CACHE_TTL') ttl: configurationService.get('CACHE_TTL')
}) })

Loading…
Cancel
Save