Skip to content

Commit 13aec7e

Browse files
committed
Update to fix lint error
Signed-off-by: Cory Imdieke <[email protected]>
1 parent 70580ed commit 13aec7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapters/Cache/RedisCacheAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class RedisCacheAdapter {
1717
this.ttl = isValidTTL(ttl) ? ttl : DEFAULT_REDIS_TTL;
1818
this.client = createClient(redisCtx);
1919
this.queue = new KeyPromiseQueue();
20-
this.client.on('error', err => {});
20+
this.client.on('error', err => { logger.error('RedisCacheAdapter client error', { error: err }) });
2121
this.client.on('connect', () => {});
2222
this.client.on('reconnecting', () => {});
2323
this.client.on('ready', () => {});

0 commit comments

Comments
 (0)