diegosouzapw/OmniRoute · error
[STARTUP] Connection recovery scheduler failed to start (non
Error message
[STARTUP] Connection recovery scheduler failed to start (non-fatal):
What it means
Error "[STARTUP] Connection recovery scheduler failed to start (non-fatal):" thrown in diegosouzapw/OmniRoute.
Source
Thrown at src/instrumentation-node.ts:576
}),
// Conductor bridge (PRD Conductor RF1): mirrors OmniConductor hub tasks into the
// A2A TaskManager via the hub SSE. Opt-in — self-gated on CONDUCTOR_HUB_URL.
import("@/lib/conductor/boot").then((m) => {
if (m.initConductorBridge()) console.log("[STARTUP] Conductor bridge started");
}).catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] Conductor bridge failed to start (non-fatal):", msg);
}),
// Proactive connection-cooldown recovery (#8): re-validate connections whose
// transient `rate_limited_until` window has elapsed OUTSIDE the request hot path,
// so the first request after a cooldown does not pay the probe latency.
import("@/lib/quota/connectionRecovery")
.then((m) => m.initConnectionRecoveryScheduler())
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] Connection recovery scheduler failed to start (non-fatal):", msg);
}),
// Arena ELO sync: model intelligence from the Arena AI leaderboard, powering the
// Free Provider Rankings page. On by default; non-blocking, never fatal.
import("@/lib/arenaEloSync")
.then(async (m) => {
const started = await m.initArenaEloSync();
if (started) console.log("[STARTUP] Arena ELO sync initialized");
})
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] Arena ELO sync failed to start (non-fatal):", msg);
}),
// Radar daily feed sync: only arms itself when RADAR_ENABLED AND the user
// opt-in are already on (flag-off boot stays timer-free — Radar inertia
// contract). Non-blocking, never fatal.
import("@/lib/radar/scheduler")View on GitHub (pinned to a179ffed5b)
When it happens
Trigger: Thrown at src/instrumentation-node.ts:576 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of diegosouzapw/OmniRoute@a179ffed5b (2026-08-25).
Data as JSON: /api/errors/280fd91c39dfa41b.
Report an issue: GitHub.