fix: update health check status response to ':ok 4'
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m51s Details

This commit is contained in:
JuruSysadmin 2026-01-06 10:52:49 -03:00
parent f66fd4271f
commit 7b2f13ab91
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export class AppController {
@Get('health') @Get('health')
@ApiOperation({ summary: 'Health check' }) @ApiOperation({ summary: 'Health check' })
healthCheck() { healthCheck() {
return { status: ':ok 3 ' }; return { status: ':ok 4 ' };
} }
} }