Call core post init (#5725)

This commit is contained in:
Mike Degatano 2025-03-05 03:05:23 -05:00 committed by GitHub
parent 26024053ed
commit 767f435090
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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()