Actions
Issue #8002
closedList content fields= - first field named not returned
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Sprint:
Sprint 87
Quarter:
Description
If you issue a REST call like this one :
http :/pulp/api/v3/content/file/files/?fields=\['sha1','md5','sha224','sha256','sha384',\]
The return won't include the first field listed in fields. I've tested this for file/files and rpm/rpm.
Full example:
(pulp) [vagrant@pulp2-nightly-pulp3-source-centos7 import_export]$ http :/pulp/api/v3/content/file/files/?fields=\['md5','sha256',\]
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"sha256": "eea228e372fa4c81456aff062985233111791b3a41a62d0052001cdb092241af"
},
{
"sha256": "da70de7648af0cc8c5c6a6b93f2fb446f2d48561d4309d2f49f4c0377536dc34"
},
{
"sha256": "99ba5519fa3afcc5fdc2b01e7fbc32610c8caaf9d3b8a70fb864ac26fef02e69"
}
]
}
(pulp) [vagrant@pulp2-nightly-pulp3-source-centos7 import_export]$ http :/pulp/api/v3/content/file/files/?fields=\['sha1','md5','sha256',\]
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"md5": "184067a11844f4d05148f6f85be72432",
"sha256": "eea228e372fa4c81456aff062985233111791b3a41a62d0052001cdb092241af"
},
{
"md5": "bd62feeef34ab9072f32f8ee0404d6c9",
"sha256": "da70de7648af0cc8c5c6a6b93f2fb446f2d48561d4309d2f49f4c0377536dc34"
},
{
"md5": "371ad96c5dbc761d68ade02ae29528fc",
"sha256": "99ba5519fa3afcc5fdc2b01e7fbc32610c8caaf9d3b8a70fb864ac26fef02e69"
}
]
}
Actions
Fixed package serialization so it displays content checksums.
closes #8002 https://pulp.plan.io/issues/8002
[notest] [nocoverage]