(self)
| 454 | class GetActiveExecutionIds(BaseRequestHandler): |
| 455 | @check_authorization |
| 456 | def get(self): |
| 457 | user_id = identify_user(self) |
| 458 | execution_service = self.application.execution_service |
| 459 | |
| 460 | active_executions = execution_service.get_active_executions(user_id) |
| 461 | |
| 462 | self.write(json.dumps(active_executions)) |
| 463 | |
| 464 | |
| 465 | class GetExecutingScriptConfig(BaseRequestHandler): |
nothing calls this directly
no test coverage detected