Issue #706
closedWhen adding a distributor to a repo_groups returned _href field is UID
Description
Description of problem:
The _href should point to an actual endpoint, not a UID.
Steps to Reproduce:
1. Add a distributor to a repo_group
curl -s -H Accept: application/json -H "WebFrameworkSwitch: webpy" -X POST -d '{"distributor_type_id": "group_export_distributor", "distributor_config": {"http": true, "https": false}}' -k -u admin:admin https://localhost/pulp/api/v2/repo_groups/test/distributors/
Actual results:
[
{
"_href": "a68bca8a-7cbb-4ec2-9bb6-8386447b55dd",
"_id": {
"$oid": "54e630a3e138231230a80605"
},
"_ns": "repo_group_distributors",
"config": {
"http": true,
"https": false
},
"distributor_type_id": "group_export_distributor",
"id": "a68bca8a-7cbb-4ec2-9bb6-8386447b55dd",
"last_publish": null,
"repo_group_id": "test",
"scratchpad": null
}
]
Expected results:
[
{
"_id": {
"$oid": "54e630a3e138231230a80605"
},
"_ns": "repo_group_distributors",
"config": {
"http": true,
"https": false
},
"distributor_type_id": "group_export_distributor",
"href": "/pulp/api/v2/repo_groups/test/distributors/a68bca8a-7cbb-4ec2-9bb6-8386447b55dd/",
"id": "a68bca8a-7cbb-4ec2-9bb6-8386447b55dd",
"last_publish": null,
"repo_group_id": "test",
"scratchpad": null
}
]
+ This bug was cloned from Bugzilla Bug #1194421 +
Updated by amacdona@redhat.com almost 9 years ago
Correction, the bug is with GET all distributors, not with creating a new one.
+ This comment was cloned from Bugzilla #1194421 comment 1 +
Updated by amacdona@redhat.com almost 9 years ago
https://github.com/pulp/pulp/pull/1670
+ This comment was cloned from Bugzilla #1194421 comment 2 +
Updated by amacdona@redhat.com almost 9 years ago
- Status changed from POST to MODIFIED
Updated by bmbouter almost 9 years ago
- Triaged changed from No to Yes
- Severity set to Low
Updated by dkliban@redhat.com over 8 years ago
- Status changed from MODIFIED to 5
Updated by pthomas@redhat.com over 8 years ago
- Status changed from 5 to 6
Verified
[root@mgmt4 ~]# rpm -qa pulp-server
pulp-server-2.7.0-0.4.beta.el6.noarch
[root@mgmt4 ~]#
{
"scratchpad":null,
"repo_group_id":"repo-grp1",
"_ns":"repo_group_distributors",
"last_publish":null,
"distributor_type_id":"group_export_distributor",
"_id":{
"$oid":"559fc32efefb7a1b27bb532c"
},
"config":{
"http":true,
"https":false
},
"id":"61c4d17e-d20a-4baf-b184-8fffb5432fa2",
"_href":"/pulp/api/v2/repo_groups/repo-grp1/distributors/61c4d17e-d20a-4baf-b184-8fffb5432fa2/"
}
Updated by amacdona@redhat.com about 8 years ago
- Status changed from 6 to CLOSED - CURRENTRELEASE
Updated by bmbouter over 3 years ago
- Category deleted (
14)
We are removing the 'API' category per open floor discussion June 16, 2020.