Revert "Try to enable dashboard (again) (#6069)" (#6159)

This reverts commit 4044af8520.
This commit is contained in:
Philipp Moritz
2019-11-13 12:32:12 -08:00
committed by Eric Liang
parent b924299833
commit f24d96ec4f
9 changed files with 35 additions and 39 deletions
+5 -4
View File
@@ -165,10 +165,11 @@ def cli(logging_level, logging_format):
@click.option(
"--webui-host",
required=False,
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.")
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.")
@click.option(
"--block",
is_flag=True,