From 2ffc5b2f6899063c02f63c930df54b4f58a84ce0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 03:21:54 +0000 Subject: [PATCH] Revert Discord bot health check to use port 8044 (Railway bot default) cgen-7ad3ffdb6c38403992ceab0698f177c5 --- server/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/index.ts b/server/index.ts index b407e739..5d6d6db4 100644 --- a/server/index.ts +++ b/server/index.ts @@ -1698,8 +1698,8 @@ export function createServer() { // Try multiple bot health URLs in order of preference const botHealthUrls = [ process.env.DISCORD_BOT_HEALTH_URL, - "http://aethex.railway.internal:3000/health", // Railway internal network (bot health port) - "http://localhost:3000/health", // Local fallback + "http://aethex.railway.internal:8044/health", // Railway internal network + "http://localhost:8044/health", // Local fallback ].filter(Boolean) as string[]; let lastError: Error | null = null;