Listing flavors with marker set returns 400
Bug #956096 reported by
Philip Knouff
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenStack Compute (nova) |
Fix Released
|
Medium
|
Philip Knouff | ||
Essex |
Fix Released
|
Medium
|
Unassigned | ||
nova (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned | ||
Precise |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
Attempting to list flavors with a limit and marker returns HTTP 400:
REQ: curl "http://
Resp:
{
"badRequest" : {
"code" : 400,
"message" : "marker [2] not found"
}
}
Expected: List the flavors after marker (up to limit).
Related branches
lp://staging/~openstack-ubuntu-testing/nova/precise-essex-proposed
- Chuck Short: Pending requested
-
Diff: 56 lines (+14/-4)3 files modifieddebian/changelog (+8/-0)
debian/control (+6/-3)
debian/nova-console.install (+0/-1)
Changed in nova: | |
importance: | Undecided → Medium |
status: | New → Confirmed |
Changed in nova: | |
assignee: | nobody → Itraju Devendra Babu (itraju-babu) |
Changed in nova: | |
milestone: | none → folsom-1 |
Changed in nova: | |
status: | Fix Committed → Fix Released |
Changed in nova (Ubuntu): | |
status: | New → Fix Released |
Changed in nova (Ubuntu Precise): | |
status: | New → Confirmed |
Changed in nova: | |
milestone: | folsom-1 → 2012.2 |
To post a comment you must log in.
I am able to get the list the flavors after marker (up to limit) using the curl command as below.
REQ:
curl -D - -H "X-Auth-Token: testuser:admin" -H "Accept: application/json" http://<ipaddress> :8774/v1. 1/admin/ flavors/ detail? limit=1& marker= 2
Response: :8774/v1. 1/admin/ flavors/ 3", "rel": "self"}, {"href": "http://<ipaddress> :8774/admin/ flavors/ 3", "rel": "bookmark"}], "rxtx_factor": 1.0, "OS-FLV- EXT-DATA: ephemeral" : 40, "ram": 4096, "id": "3", "swap": ""}], "flavors_links": [{"href": "http://<ipaddress> :8774/v1. 1/admin/ flavors? limit=1& marker= 3", "rel": "next"}]}
{"flavors": [{"vcpus": 2, "disk": 10, "name": "m1.medium", "links": [{"href": "http://<ipaddress>
Kindly, Please elaborate on this..