Skip to content

Commit

Permalink
fix(server): fix server ping URL path mismatch in healthcheck.ts (imm…
Browse files Browse the repository at this point in the history
…ich-app#13297)

fix server ping URL path mismatch in healthcheck.ts
  • Loading branch information
Itoktsnhc authored Oct 9, 2024
1 parent 3ba2602 commit 4780bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/bin/healthcheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const main = async () => {
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), 2000);
try {
const response = await fetch(`http://localhost:${port}/api/server-info/ping`, {
const response = await fetch(`http://localhost:${port}/api/server/ping`, {
signal: controller.signal,
});

Expand Down

0 comments on commit 4780bb4

Please sign in to comment.