Skip to content

Commit

Permalink
Only include tool stdout/stderr in HDA info
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Sep 22, 2023
1 parent 75c5977 commit a47b104
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 @@ -1908,7 +1908,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 a47b104

Please sign in to comment.