Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/ray/_raylet.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2462,6 +2462,10 @@ cdef CRayStatus task_execution_handler(
if hasattr(e, "unexpected_error_traceback"):
msg += (f" {e.unexpected_error_traceback}")
return CRayStatus.UnexpectedSystemExit(msg)
except Exception as e:
msg = "Unexpected exception raised in task execution handler: {}".format(e)
logger.error(msg)
return CRayStatus.UnexpectedSystemExit(msg)

return CRayStatus.OK()

Expand Down