From b4656ca244d0c963dd1b30b4ea356f1a817bd795 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Tue, 14 Apr 2020 08:30:16 -0700 Subject: [PATCH] Fix dashboard profiling (#8013) --- python/ray/dashboard/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/dashboard/dashboard.py b/python/ray/dashboard/dashboard.py index 01c01163a..a5b702d33 100644 --- a/python/ray/dashboard/dashboard.py +++ b/python/ray/dashboard/dashboard.py @@ -329,7 +329,7 @@ class DashboardRouteHandler(BaseDashboardRouteHandler): profiling_id = req.query.get("profiling_id") profiling_info = self.dashboard_controller.get_profiling_info( profiling_id) - return aiohttp.web.json_response(self.is_dev, profiling_info) + return aiohttp.web.json_response(profiling_info) async def kill_actor(self, req) -> aiohttp.web.Response: actor_id = req.query.get("actor_id")