diegosouzapw/OmniRoute · error
[STARTUP] Conductor bridge failed to start (non-fatal):
Error message
[STARTUP] Conductor bridge failed to start (non-fatal):
What it means
Error "[STARTUP] Conductor bridge failed to start (non-fatal):" thrown in diegosouzapw/OmniRoute.
Source
Thrown at src/instrumentation-node.ts:566
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] Embed WS proxy failed to start (non-fatal):", msg);
}),
import("@omniroute/open-sse/services/autoRefreshDaemon")
.then((m) => m.autoRefreshDaemon.start())
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] Auto-refresh daemon failed to start (non-fatal):", msg);
}),
// 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");View on GitHub (pinned to a179ffed5b)
When it happens
Trigger: Thrown at src/instrumentation-node.ts:566 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/1dea9734ccdb42ab.
Report an issue: GitHub.