Skip to content

Commit

Permalink
Merge pull request DIRACGrid#7552 from DIRACGridBot/cherry-pick-2-236…
Browse files Browse the repository at this point in the history
…99836c-integration

[sweep:integration] fix: type issue in JobCleaningAgent;
  • Loading branch information
fstagni authored Apr 4, 2024
2 parents 39f89f9 + bbdb960 commit ade3ee7
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 ade3ee7

Please sign in to comment.