diegosouzapw/OmniRoute · error
[STARTUP] backup schedule job failed to start (non-fatal):
Error message
[STARTUP] backup schedule job failed to start (non-fatal):
What it means
Error "[STARTUP] backup schedule job failed to start (non-fatal):" thrown in diegosouzapw/OmniRoute.
Source
Thrown at src/instrumentation-node.ts:677
// Reads the DB settings synchronously (non-blocking, never fatal). Must
// run after the DB is ready AND after getSettings/applyRuntimeSettings so
// memory backend config is hydrated.
import("@/lib/memory/index")
.then((m) => m.initMemoryBackends())
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] memory backend initialization failed (non-fatal):", msg);
}),
// Backup schedule (#8513): execute `backup-schedule.json` cron server-side.
// Reads the schedule written by `omniroute backup auto enable` and fires
// `runBackupCommand` when the cron expression matches. Self-gated: no-op
// when no schedule file exists or the schedule is disabled. Never fatal.
import("@/lib/jobs/backupScheduleJob")
.then((m) => m.startBackupScheduleJob())
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn("[STARTUP] backup schedule job failed to start (non-fatal):", msg);
}),
// Real-time dashboard WebSocket daemon (port 20132): powers Combo Studio Live,
// the Home live-pulse, and Live Compression. Side-effect import triggers the
// flag-gated auto-start (OMNIROUTE_ENABLE_LIVE_WS, default ON).
import("@/server/ws/liveServer")
.then(() => {
console.log("[STARTUP] Live dashboard WebSocket daemon bootstrap invoked");
})
.catch((err: unknown) => {
const msg = err instanceof Error ? err.message : String(err);
console.warn(
"[STARTUP] Live dashboard WebSocket daemon failed to start (non-fatal):",
msg
);
}),
]);
}View on GitHub (pinned to a179ffed5b)
When it happens
Trigger: Thrown at src/instrumentation-node.ts:677 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/93519afc49f300ae.
Report an issue: GitHub.