Skip to content

Commit

Permalink
Remove ChainedExecRunner temp files when finished. Found during #1436.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeit-internet2 committed Jun 5, 2024
1 parent 58305d8 commit 201bd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-pscheduler/pscheduler/pscheduler/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def run(self,

for remove in self.stages:
try:
pass # os.unlink(remove)
os.unlink(remove)
except IOError:
pass # This is best effort only.

Expand Down

0 comments on commit 201bd32

Please sign in to comment.