Browse Source

Bugfix/fix Redis cache health check (#4748)

* Fix Redis cache health check
pull/4749/head
Thomas Kaul 1 month ago
committed by GitHub
parent
commit
9a75e7d257
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/api/src/app/redis-cache/redis-cache.service.ts

4
apps/api/src/app/redis-cache/redis-cache.service.ts

@ -80,7 +80,7 @@ export class RedisCacheService {
public async isHealthy() { public async isHealthy() {
try { try {
const isHealthy = await Promise.race([ await Promise.race([
this.getKeys(), this.getKeys(),
new Promise((_, reject) => new Promise((_, reject) =>
setTimeout( setTimeout(
@ -90,7 +90,7 @@ export class RedisCacheService {
) )
]); ]);
return isHealthy === 'PONG'; return true;
} catch (error) { } catch (error) {
return false; return false;
} }

Loading…
Cancel
Save