Skip to content

Commit

Permalink
Merge pull request #18156 from mvdbeek/drop_redundant_error_message
Browse files Browse the repository at this point in the history
[24.0] Drop redundant error message
  • Loading branch information
mvdbeek authored May 15, 2024
2 parents 5280a79 + 34404bd commit d638bf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/galaxy/jobs/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,8 @@ def __handle_waiting_jobs(self):
self.sa_session.add(dataset_assoc.dataset.dataset)
self.sa_session.add(job)
elif job_state == JOB_ERROR:
log.error("(%d) Error checking job readiness" % job.id)
# A more informative message is shown wherever the job state is set to error
pass
else:
log.error("(%d) Job in unknown state '%s'" % (job.id, job_state))
new_waiting_jobs.append(job.id)
Expand Down

0 comments on commit d638bf4

Please sign in to comment.