cloudstack
cloudstack copied to clipboard
List ISO doesn't respect listall=true
ISSUE TYPE
- Bug Report
COMPONENT NAME
API, ISO
CLOUDSTACK VERSION
4.18, 4.19 (main)
SUMMARY
Cloudstack Doesn't list the iso when the listall=true
is passes.
STEPS TO REPRODUCE
- list ISOs using the following command, nothing is returned (or some ISOs are returned)
(localcloud) > list isos
(localcloud) >
- pass
listall=true
to the previous list ISOs command, the same result is returned.
(localcloud) > list isos listall=true
(localcloud) >
- remove
listall=true
and adddomainid
, you would get the ISOs:
(localcloud) > list isos domainid=bb55b9e8-8e05-11ee-89aa-1e002100337e filter=name,id
{
"count": 1,
"iso": [
{
"id": "98efda2e-c4a1-4bd4-afe3-ab4290b81a92",
"name": "xs-tools.iso"
}
]
}
(localcloud) >
EXPECTED RESULTS
CloudStack lists all the ISOs.
ACTUAL RESULTS
CloudStack lists nothing.
Fixed with #9064
Fix reverted, re-opening this.