Filtering services by name doesn't work
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenStack Identity (keystone) |
Fix Released
|
Wishlist
|
Juan Antonio Osorio Robles |
Bug Description
doing a query for listing services filtering by name doesn't work in the SQL backend. This is due to a couple of things:
* 'name' doesn't appear in the filterprotected decorator in keystone.
* the sql model for the service doesn't have an explicit name attribute in keystone.
This is an issue since some clients (namely python-
with the service name as a parameter (you can give the service id, name or type), even though it is not
possible to retrieve a service from keystone using the name.
description: | updated |
Changed in keystone: | |
assignee: | Juan Antonio Osorio Robles (juan-osorio-robles) → Dolph Mathews (dolph) |
Changed in keystone: | |
assignee: | Dolph Mathews (dolph) → Juan Antonio Osorio Robles (juan-osorio-robles) |
tags: | added: meeting-topic |
Changed in keystone: | |
status: | Fix Committed → Fix Released |
Changed in keystone: | |
milestone: | juno-rc1 → 2014.2 |
So I would like to know, should I add name as an sql column in the backend to enable this filtering? openstackclient ?
Or should filtering by name not be possible and thus, should I then fix it in the python-