1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/3ccece0dbc02/ changeset: 3ccece0dbc02 user: dannon date: 2011-12-09 13:01:31 summary: Job.fail() failure bugfix. affected #: 1 file diff -r 7611d5d306bb462c803b36d236cebf874ba9e1b8 -r 3ccece0dbc02812da682481bf1196d69bcc38d67 lib/galaxy/jobs/__init__.py --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -500,7 +500,7 @@ # If the job was deleted, call tool specific fail actions (used for e.g. external metadata) and clean up if self.tool: self.tool.job_failed( self, message, exception ) - if self.app.cleanup_job == 'always' or (self.app.config.cleanup_job == 'onsuccess' and job.state == job.states.DELETED): + if self.app.config.cleanup_job == 'always' or (self.app.config.cleanup_job == 'onsuccess' and job.state == job.states.DELETED): self.cleanup() def change_state( self, state, info = False ): 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.