(self, execution_id, user)
| 37 | self._env_vars = env_vars |
| 38 | |
| 39 | def get_active_executor(self, execution_id, user): |
| 40 | self.validate_execution_id(execution_id, user, only_active=False) |
| 41 | if execution_id not in self._active_executor_ids: |
| 42 | return None |
| 43 | |
| 44 | return self._executors.get(execution_id) |
| 45 | |
| 46 | def start_script(self, config, user: User): |
| 47 | audit_name = user.get_audit_name() |