[Bugfix] 修复执行任务,没有保存 history 的问题

pull/3403/head
BaiJiangJie 2019-10-31 18:05:52 +08:00
parent 87247da0ec
commit 4f7ab69508
1 changed files with 1 additions and 0 deletions

View File

@ -242,6 +242,7 @@ class AdHoc(models.Model):
except AttributeError:
hid = str(uuid.uuid4())
history = AdHocRunHistory(id=hid, adhoc=self, task=self.task)
history.save()
time_start = time.time()
date_start = timezone.now()
is_success = False