fix: 修复远程应用连接 labels 过滤问题

pull/12341/head
Bai 2023-12-15 12:18:21 +08:00 committed by 老广
parent 6955fc1734
commit c3820b30b8
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class Applet(JMSBaseModel):
if not hosts:
return None
spec_label = asset.labels.filter(name__in=['AppletHost', '发布机']).first()
spec_label = asset.labels.filter(label__name__in=['AppletHost', '发布机']).first()
if spec_label:
matched = [host for host in hosts if host.name == spec_label.value]
if matched: