perf: 优化代码结构

pull/9542/head
Aaron3S 2023-02-14 16:43:47 +08:00 committed by Jiangjie.Bai
parent f7bb408ab2
commit bd7e9ce4b9
1 changed files with 2 additions and 3 deletions

View File

@ -299,7 +299,7 @@ class JobExecution(JMSOrgBaseModel):
def match_command_group(self, acl, asset): def match_command_group(self, acl, asset):
for cg in acl.command_groups.all(): for cg in acl.command_groups.all():
matched, _ = cg.match(self.current_job.args) matched, __ = cg.match(self.current_job.args)
if matched: if matched:
if acl.is_action(CommandFilterACL.ActionChoices.accept): if acl.is_action(CommandFilterACL.ActionChoices.accept):
return True return True
@ -355,9 +355,8 @@ class JobExecution(JMSOrgBaseModel):
self.set_error(e) self.set_error(e)
class Meta: class Meta:
verbose_name = _("Job Execution") verbose_name = _("Job Execution")
ordering = ['-date_created'] ordering = ['-date_created']
class JobAuditLog(JobExecution): class JobAuditLog(JobExecution):