Browse Source

Fix Redis cache health check

pull/4748/head
Thomas Kaul 3 months ago
parent
commit
3679f2613d
  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() {
try {
const isHealthy = await Promise.race([
await Promise.race([
this.getKeys(),
new Promise((_, reject) =>
setTimeout(
@ -90,7 +90,7 @@ export class RedisCacheService {
)
]);
return isHealthy === 'PONG';
return true;
} catch (error) {
return false;
}

Loading…
Cancel
Save