From 8325a48dbd403c3c7284410768a036e5b1614cf4 Mon Sep 17 00:00:00 2001 From: willyp713 Date: Sat, 28 May 2022 21:06:23 -0500 Subject: [PATCH] Update redis-cache.module.ts --- apps/api/src/app/redis-cache/redis-cache.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/redis-cache/redis-cache.module.ts b/apps/api/src/app/redis-cache/redis-cache.module.ts index f148a804c..05fa7bf88 100644 --- a/apps/api/src/app/redis-cache/redis-cache.module.ts +++ b/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'), max: configurationService.get('MAX_ITEM_IN_CACHE'), port: configurationService.get('REDIS_PORT'), - password: configurationService.get('REDIS_PASSSWORD'), + password: configurationService.get('REDIS_PASSWORD'), store: redisStore, ttl: configurationService.get('CACHE_TTL') })