Try to enable dashboard (again) (#6069)

* Revert "Revert "Enable the Ray dashboard by default (#5976)" (#6068)"

This reverts commit 1a3e97cf23.

* fix tests that assume the dashboard isn't a job

* travis
This commit is contained in:
Eric Liang
2019-11-08 10:48:48 -08:00
committed by GitHub
parent 5a05eaaa54
commit 4044af8520
9 changed files with 39 additions and 35 deletions
+4 -5
View File
@@ -165,11 +165,10 @@ def cli(logging_level, logging_format):
@click.option(
"--webui-host",
required=False,
type=click.Choice(["127.0.0.1", "0.0.0.0"]),
default="127.0.0.1",
help="The host to bind the web UI server to. Can either be 127.0.0.1 "
"(localhost) or 0.0.0.0 (available from all interfaces). By default, this "
"is set to 127.0.0.1 to prevent access from external machines.")
default="localhost",
help="The host to bind the web UI server to. Can either be localhost "
"(127.0.0.1) or 0.0.0.0 (available from all interfaces). By default, this "
"is set to localhost to prevent access from external machines.")
@click.option(
"--block",
is_flag=True,