Skip to content

Commit

Permalink
Update to fix lint error
Browse files Browse the repository at this point in the history
Signed-off-by: Cory Imdieke <[email protected]>
  • Loading branch information
Vortec4800 committed Aug 20, 2023
1 parent 70580ed commit 13aec7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapters/Cache/RedisCacheAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {});
Expand Down

0 comments on commit 13aec7e

Please sign in to comment.