(trial, e)
| 425 | |
| 426 | @staticmethod |
| 427 | def _write_cancellation_back(trial, e): |
| 428 | trial["state"] = base.JOB_STATE_CANCEL |
| 429 | trial["misc"]["error"] = (str(type(e)), str(e)) |
| 430 | trial["refresh_time"] = coarse_utcnow() |
| 431 | |
| 432 | def _run_trial_async(self, trial): |
| 433 | def finish_trial_run(result_or_e): |
no test coverage detected