Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Nov 24, 2022
1 parent 0110a59 commit 8e0c169
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/health-check/health-check-executor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down

0 comments on commit 8e0c169

Please sign in to comment.