[Dashboard] Delete old dashboard (#12144)

* Delete old dashboard from repo.

* Delete old dashboard from repo. 2
This commit is contained in:
SangBin Cho
2020-11-25 11:31:02 -08:00
committed by GitHub
parent b7dbbfbf41
commit 753cda2f28
98 changed files with 0 additions and 25158 deletions
-19
View File
@@ -616,25 +616,6 @@ class Node:
process_info,
]
def start_reporter(self):
"""Start the reporter."""
stdout_file, stderr_file = self.get_log_file_handles(
"reporter", unique=True)
process_info = ray._private.services.start_reporter(
self.redis_address,
self._ray_params.metrics_agent_port,
self._metrics_export_port,
stdout_file=stdout_file,
stderr_file=stderr_file,
redis_password=self._ray_params.redis_password,
fate_share=self.kernel_fate_share)
assert ray_constants.PROCESS_TYPE_REPORTER not in self.all_processes
if process_info is not None:
self.all_processes[ray_constants.PROCESS_TYPE_REPORTER] = [
process_info,
]
def start_dashboard(self, require_dashboard):
"""Start the dashboard.