(self, execution_id, user)
| 116 | return result |
| 117 | |
| 118 | def get_config(self, execution_id, user) -> Optional[script_config.ConfigModel]: |
| 119 | self.validate_execution_id(execution_id, user) |
| 120 | |
| 121 | return self._get_for_execution_info(execution_id, |
| 122 | lambda i: i.config) |
| 123 | |
| 124 | def is_active(self, execution_id): |
| 125 | return execution_id in self._active_executor_ids |
no test coverage detected