From 2cb098f2f519bc319b4e9aace2dacde37a31071d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 21:57:25 +0000 Subject: [PATCH] Fix bot health URL to use 8044 as primary cgen-5053e8fb76034699830276856e255350 --- server/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/index.ts b/server/index.ts index fc4f5822..f1e26ef5 100644 --- a/server/index.ts +++ b/server/index.ts @@ -1427,9 +1427,8 @@ export function createServer() { // Try multiple bot health URLs in order of preference const botHealthUrls = [ process.env.DISCORD_BOT_HEALTH_URL, + "https://aethex.railway.internal:8044/health", "http://localhost:3000/health", - "https://aethex.railway.internal:3000/health", - "https://aethex.railway.internal:8044/health", // Fallback to old Railway URL ].filter(Boolean) as string[]; let lastError: Error | null = null;