Revert "Revert "Increase the number of unique bits for actors to avoi… (#12990)

This commit is contained in:
Eric Liang
2020-12-21 15:16:42 -08:00
committed by GitHub
parent 8b4b4bf0a2
commit 03a5b90ed6
21 changed files with 57 additions and 48 deletions
+4 -2
View File
@@ -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):