fix: after_bulk_update执行后不用return

This commit is contained in:
caoqianming 2023-08-02 10:19:38 +08:00
parent 251e373d5b
commit ab581f2851
1 changed files with 1 additions and 2 deletions

View File

@ -47,4 +47,3 @@ class QuaStatViewSet(ListModelMixin, BulkUpdateModelMixin, CustomGenericViewSet)
SfLog.objects.filter(id__in=sflogIds).update(last_test_time=now) # 更新质检记录时间
for sflogId in sflogIds:
cal_quastat_sflog.delay(sflogId)
return super().after_bulk_update(objs)