commit/galaxy-central: smcmanus: Fixed call to check_tool_output for TaskWrapper.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/3f12146d6d81/ changeset: 3f12146d6d81 user: smcmanus date: 2012-09-18 20:10:56 summary: Fixed call to check_tool_output for TaskWrapper. affected #: 1 file diff -r 23107188eab8aa8f0c5ed721af30ff13b19bd61c -r 3f12146d6d81e08f662ada2011a6973e4230512d lib/galaxy/jobs/__init__.py --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -1048,7 +1048,7 @@ # Check what the tool returned. If the stdout or stderr matched # regular expressions that indicate errors, then set an error. # The same goes if the tool's exit code was in a given range. - if ( self.check_tool_output( stdout, stderr, tool_exit_code ) ): + if ( self.check_tool_output( stdout, stderr, tool_exit_code, task ) ): task.state = task.states.OK else: task.state = task.states.ERROR 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)
-
Bitbucket