(self, job_id: JobId)
| 176 | return response() |
| 177 | |
| 178 | async def handle_delete(self, job_id: JobId): |
| 179 | assert job_id in self.jobs |
| 180 | self.deleted_jobs.add(job_id) |
| 181 | |
| 182 | def add_worker(self, hq_env: HqEnv, allocation_id: str) -> Popen: |
| 183 | self.set_job_data(allocation_id, JobData.running()) |