Revert "Add ability to specify worker and driver ports (#7833)" (#8069)

This reverts commit 9f751ff8c4.
This commit is contained in:
Edward Oakes
2020-04-17 12:32:22 -05:00
committed by GitHub
parent 8cf37726d2
commit 90ef585fd5
20 changed files with 108 additions and 351 deletions
-7
View File
@@ -376,13 +376,6 @@ def test_calling_start_ray_head(call_ray_stop_only):
])
subprocess.check_output(["ray", "stop"])
# Test starting Ray with the worker port range specified.
subprocess.check_output([
"ray", "start", "--head", "--min-worker-port", "12345",
"--max-worker-port", "12346"
])
subprocess.check_output(["ray", "stop"])
# Test starting Ray with the number of CPUs specified.
subprocess.check_output(["ray", "start", "--head", "--num-cpus", "2"])
subprocess.check_output(["ray", "stop"])