From 1988feb9cea4449474fd8d7d254d53031e7907dc Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Thu, 6 Mar 2025 23:45:41 +0000 Subject: [PATCH] exclude /health/live endpoint --- apps/server/src/core/core.module.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/core/core.module.ts b/apps/server/src/core/core.module.ts index 17644634d..a47a7b600 100644 --- a/apps/server/src/core/core.module.ts +++ b/apps/server/src/core/core.module.ts @@ -37,6 +37,7 @@ export class CoreModule implements NestModule { .exclude( { path: 'auth/setup', method: RequestMethod.POST }, { path: 'health', method: RequestMethod.GET }, + { path: 'health/live', method: RequestMethod.GET }, ) .forRoutes('*'); }