Skip to content

Commit 716b7e6

Browse files
authored
Removed logging in favor of auto reconnect to match old behavior
Signed-off-by: Cory Imdieke <[email protected]>
1 parent 9b8429e commit 716b7e6

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 => _logger.error('RedisCacheAdapter Redis Client error', { error: err }));
20+
this.client.on('error', err => {});
2121
this.client.on('connect', () => {});
2222
this.client.on('reconnecting', () => {});
2323
this.client.on('ready', () => {});

0 commit comments

Comments
 (0)