Comment 5 for bug 1555624

Revision history for this message
Penchal Reddy (pr8721) wrote :

Do we have admin quota APIs in kilo getting below in the logs

2016-03-15 08:02:17.987 11407 INFO eventlet.wsgi [-] (11407) accepted ('135.75.169.111', 55170)
2016-03-15 08:02:17.991 11407 INFO eventlet.wsgi [req-0c096b1f-d380-492c-95ba-a5a401d2cdc6 noauth-user noauth-project - - -] 135.75.169.111 - - [15/Mar/2016 08:02:17] "PATCH /admin/quotas/70a4596c9974429db5fb6fe240ab87b9 HTTP/1.1" 404 207 0.002368
2016-03-15 08:02:18.006 11407 INFO eventlet.wsgi [-] (11407) accepted ('135.75.169.111', 55171)
2016-03-15 08:02:18.009 11407 INFO eventlet.wsgi [req-2e10b247-1b6a-443b-bd49-8a82c57088ac noauth-user noauth-project - - -] 135.75.169.111 - - [15/Mar/2016 08:02:18] "PATCH /admin/quotas/70a4596c9974429db5fb6fe240ab87b9 HTTP/1.1" 404 207 0.001455

Even i tried individual API also still getting same

curl -i -X GET -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:9001/admin/quotas/70a4596c9974429db5fb6fe240ab87b9
HTTP/1.1 404 Not Found
Content-Type: text/html; charset=UTF-8
X-Openstack-Request-Id: req-7b340681-7314-45bf-b682-608ca92a8848
Content-Length: 0
Date: Tue, 15 Mar 2016 13:03:29 GMT

in my conf i have enabled both below

enabled_extensions_admin = quotas
enabled_extensions_v1 = quotas, ...

V1 API is working fine

curl -i -X GET -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:9001/v1/quotas/70a4596c9974429db5fb6fe240ab87b9
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 99
X-Openstack-Request-Id: req-3fc4bf7f-3aac-4279-81b6-38fd39f87422
Date: Tue, 15 Mar 2016 13:03:20 GMT

{
  "domain_records": 500,
  "domain_recordsets": 500,
  "domains": 10,
  "recordset_records": 20
}