From 7b2f13ab91d2b122351b3f833e114bf73f3dfcae Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Tue, 6 Jan 2026 10:52:49 -0300 Subject: [PATCH] fix: update health check status response to ':ok 4' --- src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 086ecea..5266dd9 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -14,7 +14,7 @@ export class AppController { @Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: ':ok 3 ' }; + return { status: ':ok 4 ' }; } }