diff --git a/apps/server/src/integrations/health/postgres.health.ts b/apps/server/src/integrations/health/postgres.health.ts index d98ba3d7..07b4cb39 100644 --- a/apps/server/src/integrations/health/postgres.health.ts +++ b/apps/server/src/integrations/health/postgres.health.ts @@ -17,21 +17,14 @@ export class PostgresHealthIndicator extends HealthIndicator { } async pingCheck(key: string): Promise { - let isHealthy = false; - try { await sql`SELECT 1=1`.execute(this.db); - isHealthy = true; + return this.getStatus(key, true); } catch (e) { this.logger.error(JSON.stringify(e)); - } - - if (isHealthy) { - return this.getStatus(key, isHealthy); - } else { throw new HealthCheckError( `${key} is not available`, - this.getStatus(key, isHealthy), + this.getStatus(key, false), ); } } diff --git a/apps/server/src/integrations/health/redis.health.ts b/apps/server/src/integrations/health/redis.health.ts index 454ac4e8..1b4e1f60 100644 --- a/apps/server/src/integrations/health/redis.health.ts +++ b/apps/server/src/integrations/health/redis.health.ts @@ -16,25 +16,18 @@ export class RedisHealthIndicator extends HealthIndicator { } async pingCheck(key: string): Promise { - let isHealthy = false; - try { const redis = new Redis(this.environmentService.getRedisUrl(), { maxRetriesPerRequest: 15, }); await redis.ping(); - isHealthy = true; + return this.getStatus(key, true); } catch (e) { this.logger.error(e); - } - - if (isHealthy) { - return this.getStatus(key, isHealthy); - } else { throw new HealthCheckError( `${key} is not available`, - this.getStatus(key, isHealthy), + this.getStatus(key, false), ); } }