GCS server error handling for actor creation (#8899)

This commit is contained in:
fangfengbin
2020-07-02 16:27:32 +08:00
committed by GitHub
parent a7a7bef622
commit 8fcfcc4100
14 changed files with 298 additions and 104 deletions
+1 -1
View File
@@ -308,7 +308,7 @@ def test_actor_restart_on_node_failure(ray_start_cluster):
def ready(self):
return
actor = RestartableActor.remote()
actor = RestartableActor.options(detached=True).remote()
ray.get(actor.ready.remote())
results = [actor.increase.remote() for _ in range(100)]
# Kill actor node, while the above task is still being executed.