From b168c34d566bac7881fe2d7bf208a41715c5e96b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 17 May 2024 15:05:30 +0200 Subject: [PATCH] Update index.js --- nodejs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/index.js b/nodejs/index.js index 46faf7a..f6e3608 100644 --- a/nodejs/index.js +++ b/nodejs/index.js @@ -14,7 +14,7 @@ fastify.get('/env/:env', function (req, reply) { }) fastify.get('/health', function (req, reply) { - return 'OK' + return 'OK from PR' }) const start = async () => {