Merge "Fix case-sensitive filter value in cfapi" into stable/mitaka

This commit is contained in:
Jenkins 2016-03-30 21:22:35 +00:00 committed by Gerrit Code Review
commit 6691f0dc39
1 changed files with 1 additions and 1 deletions

View File

@ -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: