commit/galaxy-central: dannon: Merged in jlhg/galaxy-central (pull request #365)
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b7e3e7d7a62a/ Changeset: b7e3e7d7a62a User: dannon Date: 2014-04-11 17:33:20 Summary: Merged in jlhg/galaxy-central (pull request #365) Update the job exit codes Affected #: 1 file diff -r 5a6b80f9a287c05a4138f5252a7c92d7f6f09f23 -r b7e3e7d7a62a724a3ffb0f04a05ceb0459630004 lib/galaxy/jobs/runners/pbs.py --- a/lib/galaxy/jobs/runners/pbs.py +++ b/lib/galaxy/jobs/runners/pbs.py @@ -72,9 +72,9 @@ 'Variable_List' : '-v', } -# From pbs' job.h +# From pbs' pbs_job.h JOB_EXIT_STATUS = { - 0: "job exec successful", + 0: "job exec successful", -1: "job exec failed, before files, no retry", -2: "job exec failed, after files, no retry", -3: "job execution failed, do retry", @@ -83,7 +83,10 @@ -6: "job aborted on MOM init, chkpt, ok migrate", -7: "job restart failed", -8: "exec() of user command failed", - -11: "job maximum walltime exceeded", # Added by John, not from job.h. + -9: "could not create/open stdout stderr files", + -10: "job exceeded a memory limit", + -11: "job exceeded a walltime limit", + -12: "job exceeded a cpu time limit", } 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