mirror of
https://github.com/wassname/ray.git
synced 2026-07-15 11:25:40 +08:00
Change Proctitle to IDLE after an Error (#7863)
This commit is contained in:
@@ -473,10 +473,10 @@ cdef execute_task(
|
||||
if isinstance(error, RayTaskError):
|
||||
# Avoid recursive nesting of RayTaskError.
|
||||
failure_object = RayTaskError(function_name, backtrace,
|
||||
error.cause_cls)
|
||||
error.cause_cls, proctitle=title)
|
||||
else:
|
||||
failure_object = RayTaskError(function_name, backtrace,
|
||||
error.__class__)
|
||||
error.__class__, proctitle=title)
|
||||
errors = []
|
||||
for _ in range(c_return_ids.size()):
|
||||
errors.append(failure_object)
|
||||
|
||||
Reference in New Issue
Block a user