hero_proc UI shows 0 services despite 20 running #59
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
hero_proc_ui dashboard shows Actions 0, Services 0, Jobs 0 — all counters are dash/zero. But
hero_proc listCLI correctly shows 20 running services.Root cause
The
service.listRPC method returns only 1 service while the CLI'slistcommand returns all 20. The UI uses the RPC API, so it sees nothing.Likely a mismatch between how the CLI queries hero_proc vs how the RPC handler returns data.
Steps to reproduce
hero_proc list→ 20 services shownExpected
UI should show the same 20 services as the CLI.
Fixed: removed hardcoded
context: "core"filter from hero_proc_ui dashboard.js. RPC now returns 62 services. Squash-merged to development.Signed-off-by: mik-tf