[1.0] Remove args from ray start (#10659)

This commit is contained in:
Alex Wu
2020-09-18 16:41:23 -07:00
committed by GitHub
parent cd7351f6a3
commit 9a07c7b963
7 changed files with 36 additions and 154 deletions
+1 -5
View File
@@ -415,10 +415,6 @@ def test_calling_start_ray_head(call_ray_stop_only):
check_call_ray(["start", "--head", "--num-gpus", "100"])
check_call_ray(["stop"])
# Test starting Ray with the max redis clients specified.
check_call_ray(["start", "--head", "--redis-max-clients", "100"])
check_call_ray(["stop"])
# Test starting Ray with redis shard ports specified.
check_call_ray(
["start", "--head", "--redis-shard-ports", "6380,6381,6382"])
@@ -428,7 +424,7 @@ def test_calling_start_ray_head(call_ray_stop_only):
check_call_ray([
"start", "--head", "--redis-shard-ports", "6380,6381,6382",
"--object-manager-port", "12345", "--num-cpus", "2", "--num-gpus", "0",
"--redis-max-clients", "100", "--resources", "{\"Custom\": 1}"
"--resources", "{\"Custom\": 1}"
])
check_call_ray(["stop"])