Merge pull request #2278 from MoerAI/fix/tmux-health-check-url

fix(tmux): use correct health check endpoint /global/health
This commit is contained in:
acamq
2026-03-06 21:37:09 -07:00
committed by GitHub
+1 -1
View File
@@ -10,7 +10,7 @@ export async function isServerRunning(serverUrl: string): Promise<boolean> {
return true
}
const healthUrl = new URL("/health", serverUrl).toString()
const healthUrl = new URL("/global/health", serverUrl).toString()
const timeoutMs = 3000
const maxAttempts = 2