diff --git a/src/health/health.controller.ts b/src/health/health.controller.ts index ec2c32fe5..0a9f8d0a7 100644 --- a/src/health/health.controller.ts +++ b/src/health/health.controller.ts @@ -24,6 +24,7 @@ export class HealthController { const healthServices: HealthService[] = [ this.apisHealthService, this.contractsHealthService, + this.providersHealthService, this.subgraphsHealthService, ]; return Promise.all(healthServices.map((service) => service.getHealth()));