mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-30 21:50:01 +00:00
perf: 优化发布机初始化部署
This commit is contained in:
parent
6ec4dc7dd5
commit
135c15d127
@ -114,6 +114,13 @@ class AppletHostDeployment(JMSBaseModel):
|
||||
ordering = ('-date_start',)
|
||||
|
||||
def start(self, **kwargs):
|
||||
# 重新初始化部署,applet host 关联的终端需要删除
|
||||
# 否则 tinker 会因终端注册名称相同,造成冲突,执行任务失败
|
||||
if self.host.terminal:
|
||||
terminal = self.host.terminal
|
||||
self.host.terminal = None
|
||||
self.host.save()
|
||||
terminal.delete()
|
||||
from ...automations.deploy_applet_host import DeployAppletHostManager
|
||||
manager = DeployAppletHostManager(self)
|
||||
manager.run(**kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user