From c0b1a99705d8b61cfaf708f7b732a71e8497131e Mon Sep 17 00:00:00 2001 From: Bobby Wang Date: Fri, 29 Jul 2022 14:23:19 +0800 Subject: [PATCH] debug CI 3, re-rasie the exception when handle the data --- python-package/xgboost/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-package/xgboost/core.py b/python-package/xgboost/core.py index 85c5b8b77d49..63d0d5c278ec 100644 --- a/python-package/xgboost/core.py +++ b/python-package/xgboost/core.py @@ -450,6 +450,7 @@ def _handle_exception(self, fn: Callable, dft_ret: _T) -> _T: # On dask, the worker is restarted and somehow the information is # lost. self._exception = e.with_traceback(tb) + self.reraise() return dft_ret def reraise(self) -> None: