Python: return first running job

This commit is contained in:
Alexander Bezzubov 2016-06-16 11:36:55 +09:00
parent 08c2bb47b9
commit 0f74e5dfd7

View file

@ -183,6 +183,7 @@ public class PythonInterpreter extends Interpreter {
for (Job job : jobsRunning) {
if (job.getId().equals(paragraphId)) {
foundJob = job;
break;
}
}
return foundJob;