When a job finishes successfully in the ShellJobRunner, mark it as DONE instead of FAILED.
This commit is contained in:
parent
aff681e407
commit
eaa2f16d83
|
|
@ -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() {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue