Push changes before rebasing

This commit is contained in:
Jim Ladd
2021-02-25 11:07:12 -08:00
parent f9b439ae82
commit 67046513ae
2 changed files with 4 additions and 6 deletions

View File

@@ -905,7 +905,7 @@ class SystemJobEventsList(SubListAPIView):
def get_queryset(self):
job = self.get_parent_object()
self.check_parent_access(job)
qs = job.job_events.select_related('host').filter(job_created=job.created).order_by('start_line')
qs = job.system_job_events.select_related('host').filter(job_created=job.created).order_by('start_line')
return qs.all()
class ProjectUpdateCancel(RetrieveAPIView):