(self, execution_id, user)
| 69 | return execution_id |
| 70 | |
| 71 | def stop_script(self, execution_id, user): |
| 72 | self.validate_execution_id(execution_id, user) |
| 73 | |
| 74 | if execution_id in self._executors: |
| 75 | self._executors[execution_id].stop() |
| 76 | |
| 77 | def kill_script(self, execution_id, user): |
| 78 | self.validate_execution_id(execution_id, user) |