Extra purchased CI minutes aren't added to namespace where the namespace path contains a dot
Problem
Extra purchased CI minutes do not apply to namespace where the namespace path contains a .
. I suspect there was a change to the /namespaces
endpoint.
GET
works as expected, for example GET /namespaces/deandre.test-group.2
returns:
{
"id": 4248792,
"name": "deandre-test-group-2",
"path": "deandre.test-group.2",
"kind": "group",
"full_path": "deandre.test-group.2",
"parent_id": null,
"avatar_url": null,
"web_url": "https://gitlab.com/groups/deandre.test-group.2",
"members_count_with_descendants": 1,
"shared_runners_minutes_limit": null,
"extra_shared_runners_minutes_limit": null,
"billable_members_count": 1,
"plan": "free"
}
PUT
(and presumably POST
) fails, for example PUT /namespaces/deandre.test-group.2?extra_shared_runners_minutes_limit=1000
returns:
{
"error": "404 Not Found"
}
Related Support Tickets (internal)
Edited by DeAndre Harris