Use GET /workplans/ for shell session orientation
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 3s

This commit is contained in:
tegwick 2026-07-09 00:25:45 +02:00
parent 2b55ea1ff4
commit af340d322c

View file

@ -315,7 +315,7 @@ def load_hub_orientation(
try:
qs = parse.urlencode({"topic_id": topic_id, "status": "active"})
data = _read_json_url(f"{orientation.base_url}/workstreams/?{qs}", timeout=timeout)
data = _read_json_url(f"{orientation.base_url}/workplans/?{qs}", timeout=timeout)
orientation.active_workstreams = _as_list(data)
orientation.remote_checked = True
except Exception as exc: