Revert "Enable Ray client server by default (#13350)" (#13429)

This reverts commit 912d0cbbf9.
This commit is contained in:
Amog Kamsetty
2021-01-13 21:28:54 -08:00
committed by GitHub
parent 8697d67791
commit 560299972c
3 changed files with 30 additions and 13 deletions
+1 -1
View File
@@ -282,7 +282,7 @@ def debug(address):
"--ray-client-server-port",
required=False,
type=int,
default=10001,
default=None,
help="the port number the ray client server will bind on. If not set, "
"the ray client server will not be started.")
@click.option(
+2 -2
View File
@@ -33,7 +33,7 @@ _ = Actor.remote()
assert len(actor_table) == 1
job_table = ray.jobs()
assert len(job_table) == 3 # dash, ray client server
assert len(job_table) == 2
# Kill the driver process.
p.kill()
@@ -79,7 +79,7 @@ ray.get(_.value.remote())
assert len(actor_table) == 1
job_table = ray.jobs()
assert len(job_table) == 3 # dash, ray client server
assert len(job_table) == 2
# Kill the driver process.
p.kill()