From 8087daa518136459b41dd4c4f9ab8380545b3b90 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Sun, 19 Apr 2026 23:15:21 +0200 Subject: [PATCH] fix: update health check path to correct endpoint --- healthcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthcheck.js b/healthcheck.js index 9febd4a..0e6b91a 100644 --- a/healthcheck.js +++ b/healthcheck.js @@ -4,7 +4,7 @@ const http = require("node:http"); const port = Number.parseInt(process.env.PORT || "3000", 10); -const path = process.env.HEALTHCHECK_PATH || "/api/templates"; +const path = process.env.HEALTHCHECK_PATH || "/api/health"; const timeoutMs = Number.parseInt(process.env.HEALTHCHECK_TIMEOUT_MS || "3000", 10); const req = http.request(