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 e090292 commit 9b8429eCopy full SHA for 9b8429e
src/Adapters/Cache/RedisCacheAdapter.js
@@ -17,10 +17,10 @@ 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 }));
21
- this.client.on('connect', () => {});
22
- this.client.on('reconnecting', () => {});
23
- this.client.on('ready', () => {});
+ this.client.on('error', err => _logger.error('RedisCacheAdapter Redis Client error', { error: err }));
+ this.client.on('connect', () => {});
+ this.client.on('reconnecting', () => {});
+ this.client.on('ready', () => {});
24
}
25
26
async connect() {
0 commit comments