Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/ray/dashboard/modules/event/event_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ async def _get_dashboard_http_address(self):
)
if not dashboard_http_address:
raise ValueError("Dashboard http address not found in InternalKV.")
self._dashboard_http_address = dashboard_http_address.decode()
self._dashboard_http_address = (
f"http://{dashboard_http_address.decode()}"
)
return self._dashboard_http_address
except Exception:
logger.exception("Get dashboard http address failed.")
Expand Down