diff --git a/auth/src/index.ts b/auth/src/index.ts index 708d91d..2f5af83 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -7,7 +7,6 @@ const port = parseInt(process.env.PORT ?? "3001", 10); const handler = toNodeHandler(auth); const server = createServer(async (req, res) => { - // Health check if (req.url === "/health" && req.method === "GET") { try { const client = await pool.connect();