Skip to content

Commit

Permalink
Move one previously overly chatty debug statement to 'TRACE' log level.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Sep 25, 2017
1 parent 1bc5644 commit c7ad7be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/jobs/actions/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ def execute(cls, app, sa_session, action, job, replacement_dict):
safe_to_delete = True
for job_to_check in [d_j.job for d_j in input_dataset.dependent_jobs]:
if job_to_check != job and job_to_check.state not in [job.states.OK, job.states.DELETED]:
log.trace("Workflow Intermediates cleanup attempted, but non-terminal state '%s' detected for job %s" % (job_to_check.state, job_to_check.id))
safe_to_delete = False
if safe_to_delete:
# Support purging here too.
Expand Down

0 comments on commit c7ad7be

Please sign in to comment.