Skip to content

Commit

Permalink
Merge pull request #16730 from natefoo/hda-info-no-job
Browse files Browse the repository at this point in the history
Only include tool stdout/stderr in HDA info
  • Loading branch information
dannon authored May 15, 2024
2 parents ad9271c + 3600421 commit 919bf37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/jobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1907,7 +1907,7 @@ def fail(message=job.info, exception=None):
job.set_state(final_job_state)
return fail(f"Job {job.id}'s output dataset(s) could not be read")

job_context = ExpressionContext(dict(stdout=job.stdout, stderr=job.stderr))
job_context = ExpressionContext(dict(stdout=tool_stdout, stderr=tool_stderr))
if extended_metadata:
try:
import_options = store.ImportOptions(allow_dataset_object_edit=True, allow_edit=True)
Expand Down

0 comments on commit 919bf37

Please sign in to comment.