Issue #401
closedResponse body of role creation call is different from role's retrieval call
Description
Description of problem:
There is a discrepancy in the response body content in:
1) Role creation call
curl H "Accept: application/json" POST -k -u admin:admin -d '{"role_id":"myrole"}' 'https://example.com/pulp/api/v2/roles/' | python -m json.tool:--:-- --:--:-- --:--:-- 235
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 206 100 173 100 33 202 38 -
{
"_href": "/pulp/api/v2/roles/myrole/",
"_id": {
"$oid": "5307601b356cdf01fefdeeb6"
},
"_ns": "roles",
"description": null,
"display_name": "myrole",
"id": "myrole",
"permissions": {}
2) Retrieval of a single role:
$ curl H "Accept: application/json" GET -k -u admin:admin 'https://example.com/pulp/api/v2/roles/myrole/' | python -m json.tool:--:-- --:--:-- --:--:-- 228
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 186 100 186 0 0 192 0 -
{
"_href": "/pulp/api/v2/roles/myrole/",
"_id": {
"$oid": "5307601b356cdf01fefdeeb6"
},
"_ns": "roles",
"description": null,
"display_name": "myrole",
"id": "myrole",
"permissions": {},
"users": []
In first case "user" field is missing, in the second case it is present.
Version-Release number of selected component (if applicable):
pulp-server-2.4.0-0.2.alpha.git.9.236d540.fc19.noarch
How reproducible:
Steps to Reproduce:
1.Create role
2.Retrieve that role
3.Compare results of the response body
Actual results:
response body of role creation call is different from response body of role retrieval
Expected results:
response body of role creation and role retrieval should be the same
Additional info:
+ This bug was cloned from Bugzilla Bug #1068633 +
Updated by bmbouter over 5 years ago
- Status changed from NEW to CLOSED - WONTFIX
Updated by bmbouter over 5 years ago
- Severity set to 1. Low
Pulp 2 is approaching maintenance mode, and this Pulp 2 ticket is not being actively worked on. As such, it is being closed as WONTFIX. Pulp 2 is still accepting contributions though, so if you want to contribute a fix for this ticket, please reopen or comment on it. If you don't have permissions to reopen this ticket, or you want to discuss an issue, please reach out via the developer mailing list.
Updated by bmbouter over 4 years ago
- Category deleted (
14)
We are removing the 'API' category per open floor discussion June 16, 2020.