Skip to content

Commit

Permalink
Fix syntax bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanCoding committed Jun 28, 2022
1 parent 54265fd commit 9ec335d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/main/dispatch/reaper.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def startup_reaping():
jobs = UnifiedJob.objects.filter(status='running', controller_node=me.hostname)
job_ids = []
for j in jobs:
job_ids.ids.append(j.id)
job_ids.append(j.id)
j.status = 'failed'
j.start_args = ''
j.job_explanation += 'Task was marked as running on system startup, so it has been marked as failed.'
Expand Down

0 comments on commit 9ec335d

Please sign in to comment.