From 767f4350909491554fabf44ff3fd4799f93ac8b7 Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Wed, 5 Mar 2025 03:05:23 -0500 Subject: [PATCH] Call core post init (#5725) --- supervisor/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/bootstrap.py b/supervisor/bootstrap.py index c6ccfa14d..991cdbdb2 100644 --- a/supervisor/bootstrap.py +++ b/supervisor/bootstrap.py @@ -60,7 +60,7 @@ async def initialize_coresys() -> CoreSys: coresys.resolution = await ResolutionManager(coresys).load_config() await coresys.resolution.load_modules() coresys.jobs = await JobManager(coresys).load_config() - coresys.core = Core(coresys) + coresys.core = await Core(coresys).post_init() coresys.plugins = await PluginManager(coresys).load_config() coresys.arch = CpuArch(coresys) coresys.auth = await Auth(coresys).load_config()