From e678d533f57b446a191e1eea9ea85c5e194a7ccf Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 1 Jun 2025 16:34:58 +0100 Subject: [PATCH] Mount BackgroundRepo in Ecto stats --- lib/music_library_web/router.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/music_library_web/router.ex b/lib/music_library_web/router.ex index 102ee93f..7694daaf 100644 --- a/lib/music_library_web/router.ex +++ b/lib/music_library_web/router.ex @@ -87,7 +87,7 @@ defmodule MusicLibraryWeb.Router do live_dashboard "/dashboard", metrics: MusicLibraryWeb.Telemetry, metrics_history: {MusicLibraryWeb.Telemetry.Storage, :metrics_history, []}, - ecto_repos: [MusicLibrary.Repo, MusicLibrary.ErrorRepo] + ecto_repos: [MusicLibrary.Repo, MusicLibrary.BackgroundRepo, MusicLibrary.ErrorRepo] oban_dashboard "/oban" end