(self, trial, e)
| 419 | trial["refresh_time"] = coarse_utcnow() |
| 420 | |
| 421 | def _write_exception_back(self, trial, e): |
| 422 | trial["state"] = base.JOB_STATE_ERROR |
| 423 | trial["misc"]["error"] = (str(type(e)), self._get_traceback(e)) |
| 424 | trial["refresh_time"] = coarse_utcnow() |
| 425 | |
| 426 | @staticmethod |
| 427 | def _write_cancellation_back(trial, e): |
no test coverage detected