mirror of
https://github.com/wassname/ray.git
synced 2026-07-09 07:11:20 +08:00
Start dashboard on all nodes and other small fixes. (#4428)
* Start reporter on all nodes. * More fixes
This commit is contained in:
committed by
Philipp Moritz
parent
4ac9c1ed6e
commit
9c158c6a87
@@ -181,7 +181,7 @@ class Dashboard(object):
|
||||
def run(self):
|
||||
self.log_dashboard_url()
|
||||
self.node_stats.start()
|
||||
aiohttp.web.run_app(self.app, host=self.ip, port=self.port)
|
||||
aiohttp.web.run_app(self.app, host="0.0.0.0", port=self.port)
|
||||
|
||||
|
||||
class NodeStats(threading.Thread):
|
||||
|
||||
+1
-1
@@ -432,7 +432,7 @@ class Node(object):
|
||||
|
||||
self.start_plasma_store()
|
||||
self.start_raylet()
|
||||
if PY3 and self._ray_params.include_webui:
|
||||
if PY3:
|
||||
self.start_reporter()
|
||||
|
||||
if self._ray_params.include_log_monitor:
|
||||
|
||||
@@ -151,7 +151,7 @@ def cli(logging_level, logging_format):
|
||||
"--include-webui",
|
||||
is_flag=True,
|
||||
default=False,
|
||||
help="provide this argument if the UI should not be started")
|
||||
help="provide this argument if the UI should be started")
|
||||
@click.option(
|
||||
"--block",
|
||||
is_flag=True,
|
||||
|
||||
Reference in New Issue
Block a user