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
+4 -9
View File
@@ -66,11 +66,6 @@ ERROR_KEY_PREFIX = b"Error:"
# entry/init points.
logger = logging.getLogger(__name__)
try:
import aiohttp
except ImportError:
aiohttp = None
try:
import setproctitle
except ImportError:
@@ -546,8 +541,8 @@ def init(address=None,
redis_password=None,
plasma_directory=None,
huge_pages=False,
include_webui=aiohttp is not None,
webui_host="localhost",
include_webui=False,
webui_host="127.0.0.1",
job_id=None,
configure_logging=True,
logging_level=logging.INFO,
@@ -628,8 +623,8 @@ def init(address=None,
include_webui: Boolean flag indicating whether to start the web
UI, which displays the status of the Ray cluster.
webui_host: 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
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.
job_id: The ID of this job.
configure_logging: True if allow the logging cofiguration here.