Skip to content

Commit

Permalink
Fix bug in PJAs for collection mapping.
Browse files Browse the repository at this point in the history
Reported by @mvdbeek here (#5416 (comment)).
  • Loading branch information
jmchilton committed Feb 2, 2018
1 parent f6f9f9a commit 0529153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/workflow/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ def _effective_post_job_actions(self, step):
def _handle_mapped_over_post_job_actions(self, step, step_inputs, step_outputs, replacement_dict):
effective_post_job_actions = self._effective_post_job_actions(step)
for pja in effective_post_job_actions:
if pja.action_type in ActionBox.immediate_actions:
if pja.action_type in ActionBox.mapped_over_output_actions:
ActionBox.execute_on_mapped_over(self.trans.app, self.trans.sa_session, pja, step_inputs, step_outputs, replacement_dict)

def _handle_post_job_actions(self, step, job, replacement_dict):
Expand Down

0 comments on commit 0529153

Please sign in to comment.