mirror of
https://github.com/wassname/ray.git
synced 2026-07-04 16:31:38 +08:00
Increase the number of unique bits for actors to avoid handle collisions (#12894)
This commit is contained in:
@@ -142,7 +142,8 @@ class WorkerCrashedError(RayError):
|
||||
"""Indicates that the worker died unexpectedly while executing a task."""
|
||||
|
||||
def __str__(self):
|
||||
return "The worker died unexpectedly while executing this task."
|
||||
return ("The worker died unexpectedly while executing this task. "
|
||||
"Check python-core-worker-*.log files for more information.")
|
||||
|
||||
|
||||
class RayActorError(RayError):
|
||||
@@ -153,7 +154,8 @@ class RayActorError(RayError):
|
||||
"""
|
||||
|
||||
def __str__(self):
|
||||
return "The actor died unexpectedly before finishing this task."
|
||||
return ("The actor died unexpectedly before finishing this task. "
|
||||
"Check python-core-worker-*.log files for more information.")
|
||||
|
||||
|
||||
class RaySystemError(RayError):
|
||||
|
||||
Reference in New Issue
Block a user