diff --git a/server/src/health.controller.ts b/server/src/health.controller.ts index 273ccf3ca8..c524a8b456 100644 --- a/server/src/health.controller.ts +++ b/server/src/health.controller.ts @@ -1,7 +1,7 @@ import { Controller, Get } from '@nestjs/common'; import { HealthCheckService, HealthCheck } from '@nestjs/terminus'; -@Controller('health') +@Controller('healthz') export class HealthController { constructor(private health: HealthCheckService) {}