bug: Task creation fails — 'Failed to create task: HTTP error: 404' #61
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#61
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?
Description
Creating a new task fails with the error:
The form renders and accepts input but the backend API returns 404 on submission. This is the same 404 as the task listing error (issue #45) — the OSIS tasks endpoint is unreachable.
Steps to Reproduce
Severity
High — task creation broken
Screenshots
Cause: the tasks code called
{osis_url}/rpc/{context}directly. After the router refactor that URL shape no longer exists → 404 on every task call.Fix: hero_archipelagos@5f58841 — the tasks service now goes through
hero_osis_sdk::ProjectsClient, which builds a URL the router actually routes.