When a job finishes successfully in the ShellJobRunner, mark it as DONE instead of FAILED.

This commit is contained in:
Khalid Shakir 2011-08-06 10:42:04 -04:00
parent aff681e407
commit eaa2f16d83
1 changed files with 1 additions and 1 deletions

View File

@ -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() {}