Skip to content

Commit

Permalink
only enumerate non-purged
Browse files Browse the repository at this point in the history
datasets
  • Loading branch information
bernt-matthias committed Aug 15, 2022
1 parent 9e46bd3 commit d420389
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/jobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2011,6 +2011,8 @@ def compute_outputs(self):

results = []
for da in job.output_datasets + job.output_library_datasets:
if da.purged:
continue
da_false_path = dataset_path_rewriter.rewrite_dataset_path(da.dataset, 'output')
mutable = da.dataset.dataset.external_filename is None
dataset_path = DatasetPath(da.dataset.dataset.id, da.dataset.file_name, false_path=da_false_path, mutable=mutable)
Expand Down

0 comments on commit d420389

Please sign in to comment.