[hero_planner_admin] dashboard broken after oschema cutover (Methods —, disconnected) #21
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_planner#21
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?
After cutting the admin to the oschema build, the dashboard rendered but showed
Methods —and a disconnected indicator (screenshot), with console 404/502s for the spec + health.Three root causes (planner-owned):
PEERwas set to the crate namehero_planner_server; therpc.socklives under the service namehero_planner, soPeerTargetpointed at a nonexistent socket -> domain discovery + the openrpc proxy 502d./healthbut the shared connection JS polls/health.json-> 404.rpc_urlwas the stale/rpc-peer-> 404.Tracked as already-fixed locally; resolution comment to follow at merge.
Fixed on
developmentin0c051c4.Three planner-owned root causes resolved:
PEERset to the service/socket namehero_planner(was the crate namehero_planner_server) -> domain discovery + openrpc proxy restored./health.json(the path the shared connection JS polls).rpc_urlmoved off the dead/rpc-peer.Admin dashboard restored: discovery works, 97-method spec loads, 0 console errors. (Follow-on
rpc_urldomain-scoping landed in #19 /7456769.)