From eaa2f16d837aeec9ad6d4e35d6ff9607972f7c89 Mon Sep 17 00:00:00 2001 From: Khalid Shakir Date: Sat, 6 Aug 2011 10:42:04 -0400 Subject: [PATCH] When a job finishes successfully in the ShellJobRunner, mark it as DONE instead of FAILED. --- .../sting/queue/engine/shell/ShellJobRunner.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scala/src/org/broadinstitute/sting/queue/engine/shell/ShellJobRunner.scala b/public/scala/src/org/broadinstitute/sting/queue/engine/shell/ShellJobRunner.scala index 128d8773c..03f9d3315 100755 --- a/public/scala/src/org/broadinstitute/sting/queue/engine/shell/ShellJobRunner.scala +++ b/public/scala/src/org/broadinstitute/sting/queue/engine/shell/ShellJobRunner.scala @@ -52,7 +52,7 @@ class ShellJobRunner(val function: CommandLineFunction) extends CommandLineJobRu updateStatus(RunnerStatus.RUNNING) job.run() - updateStatus(RunnerStatus.FAILED) + updateStatus(RunnerStatus.DONE) } override def checkUnknownStatus() {}