Start dashboard on all nodes and other small fixes. (#4428)

* Start reporter on all nodes.

* More fixes
This commit is contained in:
Robert Nishihara
2019-03-20 13:04:06 -07:00
committed by Philipp Moritz
parent 4ac9c1ed6e
commit 9c158c6a87
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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):