commit/galaxy-central: jmchilton: Bugfix for 439510f (reported by @saketkc).
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/773951eb2bbf/ Changeset: 773951eb2bbf User: jmchilton Date: 2014-04-21 15:01:22 Summary: Bugfix for 439510f (reported by @saketkc). Previous logic for determining if state had been calculated for workflow steps in workflow run module would only work for data input steps - this new logic should work for data input or tools. Affected #: 1 file diff -r 2360e50e3aad2fa3c98b7b43df9081653f82265d -r 773951eb2bbf082842fdacc00901e4506d846acb lib/galaxy/workflow/run.py --- a/lib/galaxy/workflow/run.py +++ b/lib/galaxy/workflow/run.py @@ -69,7 +69,7 @@ # Web controller will populate stateful modules on each step before calling invoke # but not API controller. More work should be done to further harmonize these methods # going forward if possible - if possible moving more web controller logic here. - modules_populated = not self.workflow.steps or hasattr( self.workflow.steps[ 0 ], "module" ) + modules_populated = not self.workflow.steps or hasattr( self.workflow.steps[ 0 ], "state" ) if not modules_populated: self._populate_modules( ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org