summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/compute/images.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/compute/images.py b/nova/api/openstack/compute/images.py
index 9879c7d25..35d21da60 100644
--- a/nova/api/openstack/compute/images.py
+++ b/nova/api/openstack/compute/images.py
@@ -177,8 +177,8 @@ class Controller(wsgi.Controller):
params[key] = val
try:
- images = self._image_service.index(context, filters=filters,
- **page_params)
+ images = self._image_service.detail(context, filters=filters,
+ **page_params)
except exception.Invalid as e:
raise webob.exc.HTTPBadRequest(explanation=str(e))
return self._view_builder.index(req, images)