Skip to content

Commit

Permalink
sweep: DIRACGrid#7550 fix: type issue in JobCleaningAgent;
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirRomanovsky authored and web-flow committed Apr 4, 2024
1 parent 39f89f9 commit bbdb960
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def deleteJobsByStatus(self, condDict, delay=False):

failedJobs = result["Value"][JobStatus.FAILED]
for job in failedJobs:
jobList.pop(jobList.index(job))
jobList.pop(jobList.index(str(job)))
if not jobList:
return S_OK()

Expand Down

0 comments on commit bbdb960

Please sign in to comment.