Skip to content

Commit

Permalink
One more fix for ephemeral collections
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Nov 12, 2021
1 parent 352d824 commit 310c02a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7175,6 +7175,8 @@ def is_new(self):
return self.state == self.states.NEW

def add_output(self, output_name, output_object):
if getattr(output_object, 'ephemeral', False):
return
if output_object.history_content_type == "dataset":
output_assoc = WorkflowInvocationStepOutputDatasetAssociation()
output_assoc.workflow_invocation_step = self
Expand Down

0 comments on commit 310c02a

Please sign in to comment.