Skip to content

Commit 112304a

Browse files
fixed: backend deploy
1 parent 073fc50 commit 112304a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/server/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ app.use((req, res, next) => {
5959
app.use('/health', (req, res) => {
6060
res.json({ status: "OK", message: "Server is working" });
6161
});
62-
app.get('/health', async (req, res) => {
62+
app.get('/healthz', async (req, res) => {
6363
try {
6464
// Simple DB connectivity check
6565
// @ts-ignore

0 commit comments

Comments
 (0)