From 3e5cac80d870929d41b83600cca0584f405c7235 Mon Sep 17 00:00:00 2001 From: SangBin Cho Date: Sun, 30 Aug 2020 00:44:34 -0700 Subject: [PATCH] [Tests] Fix Broken GCS restart test. (#10417) --- python/ray/tests/test_gcs_fault_tolerance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/test_gcs_fault_tolerance.py b/python/ray/tests/test_gcs_fault_tolerance.py index 4fbd978cb..836749049 100644 --- a/python/ray/tests/test_gcs_fault_tolerance.py +++ b/python/ray/tests/test_gcs_fault_tolerance.py @@ -56,7 +56,7 @@ def test_gcs_server_restart_during_actor_creation(ray_start_regular): ray.worker._global_node.kill_gcs_server() ray.worker._global_node.start_gcs_server() - ready, unready = ray.wait(ids, 100, 240) + ready, unready = ray.wait(ids, num_returns=100, timeout=240) print("Ready objects is {}.".format(ready)) print("Unready objects is {}.".format(unready)) assert len(unready) == 0