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 bf3fd63 commit 877e77eCopy full SHA for 877e77e
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 => _logger.error('RedisCacheAdapter Redis Client error', { error: err }));
+ this.client.on('error', err => {});
21
this.client.on('connect', () => {});
22
this.client.on('reconnecting', () => {});
23
this.client.on('ready', () => {});
0 commit comments