Skip to content

Commit 27ac3d7

Browse files
committed
fix(resources): missing parenthesis in htcondor submission script
1 parent 1547fcc commit 27ac3d7

File tree

1 file changed

+1
-1
lines changed
  • src/DIRAC/Resources/Computing/BatchSystems

1 file changed

+1
-1
lines changed

src/DIRAC/Resources/Computing/BatchSystems/Condor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
on_exit_hold_subcode = %(holdReasonSubcode)s
7979
# Jobs are then deleted from the system after N days if they are not idle or running
8080
periodic_remove = ((JobStatus == 1) && (NumJobStarts > 0)) || \
81-
((JobStatus != 1) && (JobStatus != 2) && ((time() - EnteredCurrentStatus) > (%(daysToKeepRemoteLogs)s * 24 * 3600))
81+
((JobStatus != 1) && (JobStatus != 2) && ((time() - EnteredCurrentStatus) > (%(daysToKeepRemoteLogs)s * 24 * 3600)))
8282
8383
# Specific options
8484
# ----------------

0 commit comments

Comments
 (0)