diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-05-26 10:54:46 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-05-26 10:54:46 -0400 |
| commit | f37d94428dd0b56632958d5d3a6930531a51cd44 (patch) | |
| tree | 17df22614929ee96695ad7948eb92eda89f4a924 /nova/api | |
| parent | 719dfcd62cec0f89b6e86b202f84ea79f448d4c7 (diff) | |
Restricted image filtering by name and status only
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/images.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/api/openstack/images.py b/nova/api/openstack/images.py index 553566d58..2e779da79 100644 --- a/nova/api/openstack/images.py +++ b/nova/api/openstack/images.py @@ -28,8 +28,7 @@ from nova.api.openstack.views import images as images_view LOG = log.getLogger('nova.api.openstack.images') FLAGS = flags.FLAGS -SUPPORTED_FILTERS = ['name', 'status', 'container_format', 'disk_format', - 'size_min', 'size_max'] +SUPPORTED_FILTERS = ['name', 'status'] class Controller(common.OpenstackController): |
