From dfcd22d66f208eca29c3c4ffe2809ef84658ff9c Mon Sep 17 00:00:00 2001 From: Sammy Teillet Date: Fri, 14 Apr 2023 17:03:18 +0200 Subject: [PATCH] feat: use healthz --- server/src/health.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/health.controller.ts b/server/src/health.controller.ts index 273ccf3ca..c524a8b45 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) {}