Revert "Increase the number of unique bits for actors to avoid handle collisions (#12894)" (#12988)

This reverts commit 3e492a79ec.
This commit is contained in:
Eric Liang
2020-12-18 23:51:44 -08:00
committed by GitHub
parent a092433bc8
commit 5d987f5988
19 changed files with 54 additions and 54 deletions
+2 -4
View File
@@ -142,8 +142,7 @@ 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. "
"Check python-core-worker-*.log files for more information.")
return "The worker died unexpectedly while executing this task."
class RayActorError(RayError):
@@ -154,8 +153,7 @@ class RayActorError(RayError):
"""
def __str__(self):
return ("The actor died unexpectedly before finishing this task. "
"Check python-core-worker-*.log files for more information.")
return "The actor died unexpectedly before finishing this task."
class RaySystemError(RayError):