update_manager: fix klipper instantiation on path switch

Signed-off-by:  Eric  Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-07-12 13:50:47 -04:00
parent 504a3a76f5
commit 26975e055b
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 3 additions and 2 deletions

View File

@ -208,12 +208,13 @@ class UpdateManager:
db: DBComp = self.server.lookup_component('database')
db.insert_item("moonraker", "update_manager.klipper_path", kpath)
db.insert_item("moonraker", "update_manager.klipper_exec", executable)
app_type = base_config.get_app_type(kpath)
kcfg = self.app_config["klipper"]
kcfg.set_option("path", kpath)
kcfg.set_option("env", executable)
kcfg.set_option("type", base_config.get_app_type(kpath))
kcfg.set_option("type", app_type)
need_notification = not isinstance(kupdater, AppDeploy)
kclass = get_deploy_class(kpath, BaseDeploy)
kclass = get_deploy_class(app_type, BaseDeploy)
self.updaters['klipper'] = kclass(kcfg, self.cmd_helper)
coro = self._update_klipper_repo(need_notification)
self.event_loop.create_task(coro)