update_manager: fix klipper instantiation on path switch
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
504a3a76f5
commit
26975e055b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue