Skip to content

Commit

Permalink
Start dashboard on all nodes and other small fixes. (#4428)
Browse files Browse the repository at this point in the history
* Start reporter on all nodes.

* More fixes
  • Loading branch information
robertnishihara authored and pcmoritz committed Mar 20, 2019
1 parent 4ac9c1e commit 9c158c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/ray/dashboard/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def log_dashboard_url(self):
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):
Expand Down
2 changes: 1 addition & 1 deletion python/ray/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def start_ray_processes(self):

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:
Expand Down
2 changes: 1 addition & 1 deletion python/ray/scripts/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9c158c6

Please sign in to comment.