fixed more lint issues
This commit is contained in:
parent
43f4429998
commit
5436509ed6
7 changed files with 15 additions and 16 deletions
4
libs/cache/src/connection-manager.ts
vendored
4
libs/cache/src/connection-manager.ts
vendored
|
|
@ -172,7 +172,7 @@ export class RedisConnectionManager {
|
|||
try {
|
||||
await connection.ping();
|
||||
details[`shared:${name}`] = true;
|
||||
} catch (_error) {
|
||||
} catch {
|
||||
details[`shared:${name}`] = false;
|
||||
allHealthy = false;
|
||||
}
|
||||
|
|
@ -183,7 +183,7 @@ export class RedisConnectionManager {
|
|||
try {
|
||||
await connection.ping();
|
||||
details[`unique:${name}`] = true;
|
||||
} catch (_error) {
|
||||
} catch {
|
||||
details[`unique:${name}`] = false;
|
||||
allHealthy = false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue