From af340d322c7e71e80b2e51505a918a02df9a9d53 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 9 Jul 2026 00:25:45 +0200 Subject: [PATCH] Use GET /workplans/ for shell session orientation --- src/cya/shell_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cya/shell_session.py b/src/cya/shell_session.py index 2472e8b..912194a 100644 --- a/src/cya/shell_session.py +++ b/src/cya/shell_session.py @@ -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: