(self, execution_id)
| 85 | self._executors[execution_id].kill() |
| 86 | |
| 87 | def get_exit_code(self, execution_id): |
| 88 | return self._get_for_executor(execution_id, lambda e: e.get_return_code()) |
| 89 | |
| 90 | def is_running(self, execution_id, user): |
| 91 | executor = self._executors.get(execution_id) # type: ScriptExecutor |
no test coverage detected