From b2f5508fb3a027025ab8eadffb84da1c001e4173 Mon Sep 17 00:00:00 2001 From: Jiajun Yao Date: Tue, 17 Sep 2024 10:04:03 -0700 Subject: [PATCH] [Core] Fix broken dashboard cluster page when there are dead nodes (#47701) Signed-off-by: Jiajun Yao --- python/ray/dashboard/datacenter.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/ray/dashboard/datacenter.py b/python/ray/dashboard/datacenter.py index 2af6f853de43..6338a991b485 100644 --- a/python/ray/dashboard/datacenter.py +++ b/python/ray/dashboard/datacenter.py @@ -147,8 +147,6 @@ async def get_node_info(cls, node_id, get_summary=False): node_info["raylet"] = node_stats node_info["raylet"].update(ray_stats) - node_info["status"] = node["stateSnapshot"]["state"] - # Merge GcsNodeInfo to node physical stats node_info["raylet"].update(node) death_info = node.get("deathInfo", {})