Fix case-sensitive filter value in cfapi
String values for filters in glare case-sensitive unlike murano db-api. This patch for cfapi fix services retrieve from glare api. Change-Id: Ib33e6d46178cd9da70f6f0535feb0bbd81179b4b
This commit is contained in:
@@ -85,7 +85,7 @@ class Controller(object):
|
||||
|
||||
token = req.headers['X-Auth-Token']
|
||||
m_cli = _get_muranoclient(token, req)
|
||||
kwargs = {'type': 'application'}
|
||||
kwargs = {'type': 'Application'}
|
||||
packages = m_cli.packages.filter(**kwargs)
|
||||
services = []
|
||||
for package in packages:
|
||||
|
Reference in New Issue
Block a user