We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322b8a7 commit 3121fb2Copy full SHA for 3121fb2
src/Adapters/Cache/RedisCacheAdapter.js
@@ -17,7 +17,7 @@ export class RedisCacheAdapter {
17
this.ttl = isValidTTL(ttl) ? ttl : DEFAULT_REDIS_TTL;
18
this.client = createClient(redisCtx);
19
this.queue = new KeyPromiseQueue();
20
- this.client.on('error', err => {});
+ this.client.on('error', err => { logger.error('RedisCacheAdapter client error', { error: err }) });
21
this.client.on('connect', () => {});
22
this.client.on('reconnecting', () => {});
23
this.client.on('ready', () => {});
0 commit comments