commit/galaxy-central: natefoo: Fix exception class name bug I introduced in the last change to the drmaa runner.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ff76fd33b81c/ Changeset: ff76fd33b81c User: natefoo Date: 2013-10-10 21:17:13 Summary: Fix exception class name bug I introduced in the last change to the drmaa runner. Affected #: 1 file diff -r 60a1b0fdccd252c406d8b92ab60005456afe6e7c -r ff76fd33b81cdde1fb270de688ec5e86488ba34d lib/galaxy/jobs/runners/drmaa.py --- a/lib/galaxy/jobs/runners/drmaa.py +++ b/lib/galaxy/jobs/runners/drmaa.py @@ -214,7 +214,7 @@ state = self.ds.jobStatus( external_job_id ) # TODO: probably need to keep track of InvalidJobException count and remove after it exceeds some configurable except ( drmaa.DrmCommunicationException, drmaa.InternalException, drmaa.InvalidJobException ), e: - log.warning( "(%s/%s) job check resulted in %s: %s", galaxy_id_tag, external_job_id, e.__class__.name, e ) + log.warning( "(%s/%s) job check resulted in %s: %s", galaxy_id_tag, external_job_id, e.__class__.__name__, e ) new_watched.append( ajs ) continue except Exception, e: 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