()
| 39 | wait_for_job_state(hq_env, job_id, "RUNNING") |
| 40 | |
| 41 | def get_pid(): |
| 42 | pid = read_file(default_task_output(job_id=job_id)).strip() |
| 43 | if not pid: |
| 44 | return None |
| 45 | return int(pid) |
| 46 | |
| 47 | return wait_until(get_pid) |
nothing calls this directly
no test coverage detected