Normalize island_url to /hero_<svc>/ui/ across all entries #121
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_os#121
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
island_urlincrates/hero_os_web/src/components/island_frame.rsmixes two URL conventions for iframe islands:The legacy
/hero_X_ui/and bare-name forms come from the pre-hero_router era when each admin UI was mounted directly under hero_proxy at a flat path. They still resolve only because hero_proxy is registered as a service and forwards them — but it's an extra hop and the convention asymmetry produces real bugs:/hero_compute/ui503 (40 hits) and/hero_browser/ui503 (106 hits) — services aren't reachable through their flat URLs.Fix
Normalize every entry to
/hero_<service>/ui/. For each currently-legacy island, verify the service has aui.sockexposed; if not, register one or drop the island metadata until it's wired up.Affected entries:
biz,business,forge,indexer,cloud,compute,proxy,router(the second one — already partially fixed via #119 forinspector).Out of scope
Services that don't yet have a hero_router-style
ui.sock(browser, compute) — those need their own deploy/config tickets.