From 13aec7ee6a25fd920fdb6fd541f30f983eb9e4c9 Mon Sep 17 00:00:00 2001 From: Cory Imdieke Date: Sun, 20 Aug 2023 12:25:06 -0500 Subject: [PATCH] Update to fix lint error Signed-off-by: Cory Imdieke --- src/Adapters/Cache/RedisCacheAdapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Adapters/Cache/RedisCacheAdapter.js b/src/Adapters/Cache/RedisCacheAdapter.js index d8de9ecbdc3..a0345a11012 100644 --- a/src/Adapters/Cache/RedisCacheAdapter.js +++ b/src/Adapters/Cache/RedisCacheAdapter.js @@ -17,7 +17,7 @@ export class RedisCacheAdapter { this.ttl = isValidTTL(ttl) ? ttl : DEFAULT_REDIS_TTL; this.client = createClient(redisCtx); this.queue = new KeyPromiseQueue(); - this.client.on('error', err => {}); + this.client.on('error', err => { logger.error('RedisCacheAdapter client error', { error: err }) }); this.client.on('connect', () => {}); this.client.on('reconnecting', () => {}); this.client.on('ready', () => {});