From 8e0c1696e19ee8edc887534e3ea108e28bc45125 Mon Sep 17 00:00:00 2001 From: Livio Date: Thu, 24 Nov 2022 11:02:57 +0100 Subject: [PATCH] chore: formatting --- lib/health-check/health-check-executor.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/health-check/health-check-executor.service.ts b/lib/health-check/health-check-executor.service.ts index dee3eb53b..2c6e6310b 100644 --- a/lib/health-check/health-check-executor.service.ts +++ b/lib/health-check/health-check-executor.service.ts @@ -60,7 +60,9 @@ export class HealthCheckExecutor implements BeforeApplicationShutdown { const results: HealthIndicatorResult[] = []; const errors: HealthIndicatorResult[] = []; - const result = await Promise.allSettled(healthIndicators.map(async (h) => h())); + const result = await Promise.allSettled( + healthIndicators.map(async (h) => h()), + ); result.forEach((res) => { if (res.status === 'fulfilled') {