perf: 支持发布机仅初始化配置

This commit is contained in:
Eric
2024-03-15 13:57:22 +08:00
committed by Bryan
parent d71c41e384
commit d8a891a7d7
6 changed files with 19 additions and 9 deletions

View File

@@ -155,8 +155,8 @@ class AppletHostDeployment(JMSBaseModel):
self.host.save()
terminal.delete()
from ...automations.deploy_applet_host import DeployAppletHostManager
manager = DeployAppletHostManager(self)
manager.run(**kwargs)
manager = DeployAppletHostManager(self, **kwargs)
manager.run()
def install_applet(self, applet_id, **kwargs):
from ...automations.deploy_applet_host import DeployAppletHostManager